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

Side by Side Diff: trunk/src/mojo/examples/aura_demo/window_tree_host_mojo.cc

Issue 205313002: Revert 258077 "Remove PrepareForShutdown" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 9 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "mojo/examples/aura_demo/window_tree_host_mojo.h" 5 #include "mojo/examples/aura_demo/window_tree_host_mojo.h"
6 6
7 #include "mojo/examples/aura_demo/demo_context_factory.h" 7 #include "mojo/examples/aura_demo/demo_context_factory.h"
8 #include "mojo/public/bindings/allocation_scope.h" 8 #include "mojo/public/bindings/allocation_scope.h"
9 #include "mojo/public/gles2/gles2.h" 9 #include "mojo/public/gles2/gles2.h"
10 #include "mojo/services/native_viewport/geometry_conversions.h" 10 #include "mojo/services/native_viewport/geometry_conversions.h"
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 void WindowTreeHostMojo::PostNativeEvent( 122 void WindowTreeHostMojo::PostNativeEvent(
123 const base::NativeEvent& native_event) { 123 const base::NativeEvent& native_event) {
124 NOTIMPLEMENTED(); 124 NOTIMPLEMENTED();
125 } 125 }
126 126
127 void WindowTreeHostMojo::OnDeviceScaleFactorChanged(float device_scale_factor) { 127 void WindowTreeHostMojo::OnDeviceScaleFactorChanged(float device_scale_factor) {
128 NOTIMPLEMENTED(); 128 NOTIMPLEMENTED();
129 } 129 }
130 130
131 void WindowTreeHostMojo::PrepareForShutdown() {
132 NOTIMPLEMENTED();
133 }
134
131 void WindowTreeHostMojo::SetCursorNative(gfx::NativeCursor cursor) { 135 void WindowTreeHostMojo::SetCursorNative(gfx::NativeCursor cursor) {
132 NOTIMPLEMENTED(); 136 NOTIMPLEMENTED();
133 } 137 }
134 138
135 void WindowTreeHostMojo::MoveCursorToNative(const gfx::Point& location) { 139 void WindowTreeHostMojo::MoveCursorToNative(const gfx::Point& location) {
136 NOTIMPLEMENTED(); 140 NOTIMPLEMENTED();
137 } 141 }
138 142
139 void WindowTreeHostMojo::OnCursorVisibilityChangedNative(bool show) { 143 void WindowTreeHostMojo::OnCursorVisibilityChangedNative(bool show) {
140 NOTIMPLEMENTED(); 144 NOTIMPLEMENTED();
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 event.flags(), event.key_data().is_char()); 195 event.flags(), event.key_data().is_char());
192 SendEventToProcessor(&ev); 196 SendEventToProcessor(&ev);
193 break; 197 break;
194 } 198 }
195 // TODO(beng): touch, etc. 199 // TODO(beng): touch, etc.
196 } 200 }
197 }; 201 };
198 202
199 } // namespace examples 203 } // namespace examples
200 } // namespace mojo 204 } // namespace mojo
OLDNEW
« no previous file with comments | « trunk/src/mojo/examples/aura_demo/window_tree_host_mojo.h ('k') | trunk/src/ui/aura/remote_window_tree_host_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698