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

Side by Side Diff: ui/aura/window_tree_host_ozone.cc

Issue 251743004: aura: Remove WindowTreeHost::QueryMouseLocation(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ui/aura/window_tree_host_ozone.h ('k') | ui/aura/window_tree_host_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/aura/window_tree_host_ozone.h" 5 #include "ui/aura/window_tree_host_ozone.h"
6 6
7 #include "ui/aura/window_event_dispatcher.h" 7 #include "ui/aura/window_event_dispatcher.h"
8 #include "ui/base/cursor/ozone/cursor_factory_ozone.h" 8 #include "ui/base/cursor/ozone/cursor_factory_ozone.h"
9 #include "ui/events/ozone/event_factory_ozone.h" 9 #include "ui/events/ozone/event_factory_ozone.h"
10 #include "ui/events/platform/platform_event_source.h" 10 #include "ui/events/platform/platform_event_source.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
77 77
78 gfx::Point WindowTreeHostOzone::GetLocationOnNativeScreen() const { 78 gfx::Point WindowTreeHostOzone::GetLocationOnNativeScreen() const {
79 return bounds_.origin(); 79 return bounds_.origin();
80 } 80 }
81 81
82 void WindowTreeHostOzone::SetCapture() { NOTIMPLEMENTED(); } 82 void WindowTreeHostOzone::SetCapture() { NOTIMPLEMENTED(); }
83 83
84 void WindowTreeHostOzone::ReleaseCapture() { NOTIMPLEMENTED(); } 84 void WindowTreeHostOzone::ReleaseCapture() { NOTIMPLEMENTED(); }
85 85
86 bool WindowTreeHostOzone::QueryMouseLocation(gfx::Point* location_return) {
87 NOTIMPLEMENTED();
88 return false;
89 }
90
91 void WindowTreeHostOzone::PostNativeEvent( 86 void WindowTreeHostOzone::PostNativeEvent(
92 const base::NativeEvent& native_event) { 87 const base::NativeEvent& native_event) {
93 NOTIMPLEMENTED(); 88 NOTIMPLEMENTED();
94 } 89 }
95 90
96 void WindowTreeHostOzone::OnDeviceScaleFactorChanged( 91 void WindowTreeHostOzone::OnDeviceScaleFactorChanged(
97 float device_scale_factor) { 92 float device_scale_factor) {
98 NOTIMPLEMENTED(); 93 NOTIMPLEMENTED();
99 } 94 }
100 95
(...skipping 20 matching lines...) Expand all
121 return new WindowTreeHostOzone(bounds); 116 return new WindowTreeHostOzone(bounds);
122 } 117 }
123 118
124 // static 119 // static
125 gfx::Size WindowTreeHost::GetNativeScreenSize() { 120 gfx::Size WindowTreeHost::GetNativeScreenSize() {
126 NOTIMPLEMENTED(); 121 NOTIMPLEMENTED();
127 return gfx::Size(); 122 return gfx::Size();
128 } 123 }
129 124
130 } // namespace aura 125 } // namespace aura
OLDNEW
« no previous file with comments | « ui/aura/window_tree_host_ozone.h ('k') | ui/aura/window_tree_host_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698