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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 8380033: aura: Fix shift/ctrl/alt keyevents with RWHVA and X11. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 1 month 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 | « no previous file | content/browser/renderer_host/web_input_event_aurax11.cc » ('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 (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
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
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/web_input_event_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698