OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "content/browser/renderer_host/render_widget_host_view_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/browser/renderer_host/backing_store_skia.h" | 8 #include "content/browser/renderer_host/backing_store_skia.h" |
9 #include "content/browser/renderer_host/web_input_event_aura.h" | 9 #include "content/browser/renderer_host/web_input_event_aura.h" |
10 #include "content/browser/renderer_host/render_widget_host.h" | 10 #include "content/browser/renderer_host/render_widget_host.h" |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 for (std::vector< base::Callback<void(void)> >::const_iterator | 410 for (std::vector< base::Callback<void(void)> >::const_iterator |
411 it = on_compositing_ended_callbacks_.begin(); | 411 it = on_compositing_ended_callbacks_.begin(); |
412 it != on_compositing_ended_callbacks_.end(); ++it) { | 412 it != on_compositing_ended_callbacks_.end(); ++it) { |
413 it->Run(); | 413 it->Run(); |
414 } | 414 } |
415 on_compositing_ended_callbacks_.clear(); | 415 on_compositing_ended_callbacks_.clear(); |
416 compositor->RemoveObserver(this); | 416 compositor->RemoveObserver(this); |
417 } | 417 } |
418 #endif | 418 #endif |
419 | 419 |
420 #if !defined(TOUCH_UI) | |
421 //////////////////////////////////////////////////////////////////////////////// | 420 //////////////////////////////////////////////////////////////////////////////// |
422 // RenderWidgetHostViewAura, private: | 421 // RenderWidgetHostViewAura, private: |
423 | 422 |
424 void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() { | 423 void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() { |
425 //NOTIMPLEMENTED(); | 424 //NOTIMPLEMENTED(); |
426 // TODO(beng): See RenderWidgetHostViewWin. | 425 // TODO(beng): See RenderWidgetHostViewWin. |
427 } | 426 } |
428 #endif | |
OLD | NEW |