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

Side by Side Diff: ui/platform_window/win/win_window.cc

Issue 1390883003: aura: Unify WindowTreeHost for some platforms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win build Created 5 years, 2 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/aura/window_tree_host_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/platform_window/win/win_window.h" 5 #include "ui/platform_window/win/win_window.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "ui/events/event.h" 9 #include "ui/events/event.h"
10 #include "ui/events/event_utils.h" 10 #include "ui/events/event_utils.h"
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 } 100 }
101 101
102 void WinWindow::ToggleFullscreen() {} 102 void WinWindow::ToggleFullscreen() {}
103 103
104 void WinWindow::Maximize() {} 104 void WinWindow::Maximize() {}
105 105
106 void WinWindow::Minimize() {} 106 void WinWindow::Minimize() {}
107 107
108 void WinWindow::Restore() {} 108 void WinWindow::Restore() {}
109 109
110 void WinWindow::SetCursor(PlatformCursor cursor) {} 110 void WinWindow::SetCursor(PlatformCursor cursor) {
111 ::SetCursor(cursor);
112 }
111 113
112 void WinWindow::MoveCursorTo(const gfx::Point& location) {} 114 void WinWindow::MoveCursorTo(const gfx::Point& location) {}
113 115
114 void WinWindow::ConfineCursorToBounds(const gfx::Rect& bounds) { 116 void WinWindow::ConfineCursorToBounds(const gfx::Rect& bounds) {
115 } 117 }
116 118
117 PlatformImeController* WinWindow::GetPlatformImeController() { 119 PlatformImeController* WinWindow::GetPlatformImeController() {
118 return nullptr; 120 return nullptr;
119 } 121 }
120 122
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 189
188 namespace test { 190 namespace test {
189 191
190 // static 192 // static
191 void SetUsePopupAsRootWindowForTest(bool use) { 193 void SetUsePopupAsRootWindowForTest(bool use) {
192 use_popup_as_root_window_for_test = use; 194 use_popup_as_root_window_for_test = use;
193 } 195 }
194 196
195 } // namespace test 197 } // namespace test
196 } // namespace ui 198 } // namespace ui
OLDNEW
« no previous file with comments | « ui/aura/window_tree_host_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698