Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: ui/gfx/win/singleton_hwnd.cc

Issue 1061733002: Remove windows/mac/ios specific code from //ui (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: fix default try set Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gfx/win/singleton_hwnd.h ('k') | ui/gfx/win/window_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/gfx/win/singleton_hwnd.h"
6
7 #include "base/memory/singleton.h"
8 #include "base/message_loop/message_loop.h"
9
10 namespace gfx {
11
12 // static
13 SingletonHwnd* SingletonHwnd::GetInstance() {
14 return Singleton<SingletonHwnd>::get();
15 }
16
17 void SingletonHwnd::AddObserver(Observer* observer) {
18 observer_list_.AddObserver(observer);
19 }
20
21 void SingletonHwnd::RemoveObserver(Observer* observer) {
22 if (!hwnd())
23 return;
24 observer_list_.RemoveObserver(observer);
25 }
26
27 BOOL SingletonHwnd::ProcessWindowMessage(HWND window,
28 UINT message,
29 WPARAM wparam,
30 LPARAM lparam,
31 LRESULT& result,
32 DWORD msg_map_id) {
33 FOR_EACH_OBSERVER(Observer,
34 observer_list_,
35 OnWndProc(window, message, wparam, lparam));
36 return false;
37 }
38
39 SingletonHwnd::SingletonHwnd() {
40 if (!base::MessageLoopForUI::IsCurrent()) {
41 // Creating this window in (e.g.) a renderer inhibits shutdown on
42 // Windows. See http://crbug.com/230122 and http://crbug.com/236039.
43 DLOG(ERROR) << "Cannot create windows on non-UI thread!";
44 return;
45 }
46 WindowImpl::Init(NULL, Rect());
47 }
48
49 SingletonHwnd::~SingletonHwnd() {
50 }
51
52 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/win/singleton_hwnd.h ('k') | ui/gfx/win/window_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698