summaryrefslogtreecommitdiff
path: root/chromium/components/browser_watcher/endsession_watcher_window_win.cc
blob: cf4bb82343bef333f086576f5a244d1d136f0f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright (c) 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/browser_watcher/endsession_watcher_window_win.h"

#include "base/logging.h"
#include "base/win/wrapped_window_proc.h"

namespace browser_watcher {

namespace {

const wchar_t kWindowClassName[] = L"Chrome_BrowserWatcherWindow";

}  // namespace

EndSessionWatcherWindow::EndSessionWatcherWindow(
    const EndSessionMessageCallback& on_end_session_message) :
        on_end_session_message_(on_end_session_message) {
  WNDCLASSEX window_class = {0};
  base::win::InitializeWindowClass(
      kWindowClassName,
      &base::win::WrappedWindowProc<EndSessionWatcherWindow::WndProcThunk>,
      0, 0, 0, NULL, NULL, NULL, NULL, NULL,
      &window_class);
  instance_ = window_class.hInstance;
  ATOM clazz = ::RegisterClassEx(&window_class);
  DCHECK(clazz);

  // TODO(siggi): will a message window do here?
  window_ = ::CreateWindow(kWindowClassName,
                           0, 0, 0, 0, 0, 0, 0, 0, instance_, 0);
  ::SetWindowLongPtr(window_, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(this));
  DCHECK_EQ(::GetWindowLongPtr(window_, GWLP_USERDATA),
            reinterpret_cast<LONG_PTR>(this));
}

EndSessionWatcherWindow::~EndSessionWatcherWindow() {
  if (window_) {
    ::DestroyWindow(window_);
    ::UnregisterClass(kWindowClassName, instance_);
  }
}

LRESULT EndSessionWatcherWindow::OnEndSessionMessage(UINT message,
                                                     WPARAM wparam,
                                                     LPARAM lparam) {
  on_end_session_message_.Run(message, lparam);
  return 0;
}

LRESULT CALLBACK EndSessionWatcherWindow::WndProcThunk(HWND hwnd,
                                                       UINT message,
                                                       WPARAM wparam,
                                                       LPARAM lparam) {
  EndSessionWatcherWindow* msg_wnd =
      reinterpret_cast<EndSessionWatcherWindow*>(
          ::GetWindowLongPtr(hwnd, GWLP_USERDATA));
  if (msg_wnd)
    return msg_wnd->WndProc(hwnd, message, wparam, lparam);

  return ::DefWindowProc(hwnd, message, wparam, lparam);
}

LRESULT EndSessionWatcherWindow::WndProc(HWND hwnd,
                                         UINT message,
                                         WPARAM wparam,
                                         LPARAM lparam) {
  switch (message) {
    case WM_ENDSESSION:
    case WM_QUERYENDSESSION:
      return OnEndSessionMessage(message, wparam, lparam);
    default:
      break;
  }

  return ::DefWindowProc(hwnd, message, wparam, lparam);
}

}  // namespace browser_watcher