summaryrefslogtreecommitdiffstats
path: root/ash/keyboard_overlay/keyboard_overlay_view.h
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 19:53:38 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-25 19:53:38 +0000
commitb36e66174d685a4195d7cc934d978086e033a8c4 (patch)
tree6c5292963542edb817c2a8da6c02861a69953da9 /ash/keyboard_overlay/keyboard_overlay_view.h
parent4d230e3b61a996347cdb802de44c3122c4e0b6de (diff)
downloadchromium_src-b36e66174d685a4195d7cc934d978086e033a8c4.zip
chromium_src-b36e66174d685a4195d7cc934d978086e033a8c4.tar.gz
chromium_src-b36e66174d685a4195d7cc934d978086e033a8c4.tar.bz2
Revert 148383 - Move the keyboard overlay view to ash.
This change introduces an issue when Shift+Alt is pressed (http://code.google.com/p/chromium/issues/detail?id=131159). I'll fix it shortly together with the more general issue (http://code.google.com/p/chromium/issues/detail?id=129834). BUG=124222 TEST=None Review URL: https://chromiumcodereview.appspot.com/10829003 TBR=mazda@chromium.org Review URL: https://chromiumcodereview.appspot.com/10823017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148385 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/keyboard_overlay/keyboard_overlay_view.h')
-rw-r--r--ash/keyboard_overlay/keyboard_overlay_view.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/ash/keyboard_overlay/keyboard_overlay_view.h b/ash/keyboard_overlay/keyboard_overlay_view.h
deleted file mode 100644
index a0b44e0..0000000
--- a/ash/keyboard_overlay/keyboard_overlay_view.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_KEYBOARD_OVERLAY_KEYBOARD_OVERLAY_VIEW_H_
-#define ASH_KEYBOARD_OVERLAY_KEYBOARD_OVERLAY_VIEW_H_
-
-#include "ash/ash_export.h"
-#include "base/compiler_specific.h"
-#include "ui/views/controls/webview/web_dialog_view.h"
-
-class GURL;
-
-namespace content {
-class BrowserContext;
-}
-
-namespace ui {
-class WebDialogDelegate;
-}
-
-// A customized dialog view for the keyboard overlay.
-class ASH_EXPORT KeyboardOverlayView : public views::WebDialogView {
- public:
- KeyboardOverlayView(content::BrowserContext* context,
- ui::WebDialogDelegate* delegate,
- WebContentsHandler* handler);
- virtual ~KeyboardOverlayView();
-
- // Shows the keyboard overlay.
- static void ShowDialog(content::BrowserContext* context,
- WebContentsHandler* handler,
- const GURL& url);
-
- private:
- // Overridden from views::WidgetDelegate:
- virtual void WindowClosing() OVERRIDE;
-
- DISALLOW_COPY_AND_ASSIGN(KeyboardOverlayView);
-};
-
-#endif // ASH_KEYBOARD_OVERLAY_KEYBOARD_OVERLAY_VIEW_H_