OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
11 #include <atlmisc.h> | 11 #include <atlmisc.h> |
12 | 12 |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/scoped_comptr_win.h" | 15 #include "base/scoped_comptr_win.h" |
16 #include "base/scoped_ptr.h" | 16 #include "base/scoped_ptr.h" |
17 #include "base/task.h" | 17 #include "base/task.h" |
18 #include "chrome/browser/browser_accessibility_manager.h" | 18 #include "chrome/browser/browser_accessibility_manager_win.h" |
19 #include "chrome/browser/ime_input.h" | 19 #include "chrome/browser/ime_input.h" |
20 #include "chrome/browser/renderer_host/render_widget_host_view.h" | 20 #include "chrome/browser/renderer_host/render_widget_host_view.h" |
21 #include "chrome/common/notification_registrar.h" | 21 #include "chrome/common/notification_registrar.h" |
22 #include "webkit/glue/webcursor.h" | 22 #include "webkit/glue/webcursor.h" |
23 | 23 |
24 namespace gfx { | 24 namespace gfx { |
25 class Size; | 25 class Size; |
26 class Rect; | 26 class Rect; |
27 } | 27 } |
28 | 28 |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 // whenever we paint. | 333 // whenever we paint. |
334 bool visually_deemphasized_; | 334 bool visually_deemphasized_; |
335 | 335 |
336 // Registrar so we can listen to RENDERER_PROCESS_TERMINATED events. | 336 // Registrar so we can listen to RENDERER_PROCESS_TERMINATED events. |
337 NotificationRegistrar registrar_; | 337 NotificationRegistrar registrar_; |
338 | 338 |
339 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 339 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
340 }; | 340 }; |
341 | 341 |
342 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 342 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |