OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/extensions/extension_host.h" | |
11 #include "content/public/browser/native_web_keyboard_event.h" | 10 #include "content/public/browser/native_web_keyboard_event.h" |
| 11 #include "extensions/browser/extension_host.h" |
12 #include "third_party/skia/include/core/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
13 #include "ui/views/controls/native/native_view_host.h" | 13 #include "ui/views/controls/native/native_view_host.h" |
14 #include "ui/views/controls/webview/unhandled_keyboard_event_handler.h" | 14 #include "ui/views/controls/webview/unhandled_keyboard_event_handler.h" |
15 | 15 |
16 class Browser; | 16 class Browser; |
17 | 17 |
18 namespace content { | 18 namespace content { |
19 class RenderViewHost; | 19 class RenderViewHost; |
20 } | 20 } |
21 | 21 |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 bool is_clipped_; | 107 bool is_clipped_; |
108 | 108 |
109 // A handler to handle unhandled keyboard messages coming back from the | 109 // A handler to handle unhandled keyboard messages coming back from the |
110 // renderer process. | 110 // renderer process. |
111 views::UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; | 111 views::UnhandledKeyboardEventHandler unhandled_keyboard_event_handler_; |
112 | 112 |
113 DISALLOW_COPY_AND_ASSIGN(ExtensionViewViews); | 113 DISALLOW_COPY_AND_ASSIGN(ExtensionViewViews); |
114 }; | 114 }; |
115 | 115 |
116 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ | 116 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_VIEW_VIEWS_H_ |
OLD | NEW |