| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/gfx/size.h" | 14 #include "base/gfx/size.h" |
| 15 #include "base/scoped_handle.h" | 15 #include "base/scoped_handle.h" |
| 16 #include "base/shared_memory.h" | 16 #include "base/shared_memory.h" |
| 17 #include "base/task.h" | 17 #include "base/task.h" |
| 18 #include "chrome/browser/ime_input.h" | 18 #include "chrome/browser/ime_input.h" |
| 19 #include "chrome/browser/renderer_host/render_widget_host_view.h" | 19 #include "chrome/browser/renderer_host/render_widget_host_view.h" |
| 20 #include "chrome/common/render_messages.h" | 20 #include "webkit/glue/webcursor.h" |
| 21 #include "chrome/views/focus_manager.h" | |
| 22 | 21 |
| 23 namespace gfx { | 22 namespace gfx { |
| 24 class Rect; | 23 class Rect; |
| 25 } | 24 } |
| 26 namespace IPC { | 25 namespace IPC { |
| 27 class Message; | 26 class Message; |
| 28 } | 27 } |
| 29 class RenderWidgetHost; | 28 class RenderWidgetHost; |
| 30 class WebMouseEvent; | 29 class WebMouseEvent; |
| 31 class WebCursor; | 30 class WebCursor; |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 // Whether the renderer is made accessible. | 274 // Whether the renderer is made accessible. |
| 276 // TODO(jcampan): http://b/issue?id=1432077 This is a temporary work-around | 275 // TODO(jcampan): http://b/issue?id=1432077 This is a temporary work-around |
| 277 // until that bug is fixed. | 276 // until that bug is fixed. |
| 278 bool renderer_accessible_; | 277 bool renderer_accessible_; |
| 279 | 278 |
| 280 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 279 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 281 }; | 280 }; |
| 282 | 281 |
| 283 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 282 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 284 | 283 |
| OLD | NEW |