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

Unified Diff: ash/shell.h

Issue 10825026: Make accelerators not to work when the keyboard overlay is shown. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 13614653b4e875fb38fb8aeeb73aa800c9640cd5..fb03adfff7e3cb1c37f58a2abd01b0c7be8022a2 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -84,8 +84,8 @@ class FocusCycler;
class MagnificationController;
class DisplayController;
Daniel Erat 2012/07/26 01:52:51 nit: not your fault, but mind fixing the alphabeti
mazda 2012/07/26 02:09:08 Done.
class MouseCursorEventFilter;
+class OverlayEventFilter;
class PanelLayoutManager;
-class PartialScreenshotEventFilter;
class ResizeShadowController;
class RootWindowController;
class RootWindowLayoutManager;
@@ -261,8 +261,8 @@ class ASH_EXPORT Shell : aura::CursorDelegate {
internal::EventRewriterEventFilter* event_rewriter_filter() {
return event_rewriter_filter_.get();
}
- internal::PartialScreenshotEventFilter* partial_screenshot_filter() {
- return partial_screenshot_filter_.get();
+ internal::OverlayEventFilter* overlay_filter() {
+ return overlay_filter_.get();
}
DesktopBackgroundController* desktop_background_controller() {
return desktop_background_controller_.get();
@@ -445,7 +445,7 @@ class ASH_EXPORT Shell : aura::CursorDelegate {
// An event filter that pre-handles key events while the partial
// screenshot UI is active.
- scoped_ptr<internal::PartialScreenshotEventFilter> partial_screenshot_filter_;
+ scoped_ptr<internal::OverlayEventFilter> overlay_filter_;
// An event filter which handles system level gestures
scoped_ptr<internal::SystemGestureEventFilter> system_gesture_filter_;

Powered by Google App Engine
This is Rietveld 408576698