| 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" | |
| 14 #include "base/gfx/size.h" | |
| 15 #include "base/scoped_handle.h" | |
| 16 #include "base/shared_memory.h" | |
| 17 #include "base/task.h" | 13 #include "base/task.h" |
| 18 #include "chrome/browser/ime_input.h" | 14 #include "chrome/browser/ime_input.h" |
| 19 #include "chrome/browser/renderer_host/render_widget_host_view.h" | 15 #include "chrome/browser/renderer_host/render_widget_host_view.h" |
| 20 #include "webkit/glue/webcursor.h" | 16 #include "webkit/glue/webcursor.h" |
| 21 | 17 |
| 22 namespace gfx { | 18 namespace gfx { |
| 19 class Size; |
| 23 class Rect; | 20 class Rect; |
| 24 } | 21 } |
| 25 namespace IPC { | 22 namespace IPC { |
| 26 class Message; | 23 class Message; |
| 27 } | 24 } |
| 28 class RenderWidgetHost; | 25 class RenderWidgetHost; |
| 29 class WebMouseEvent; | 26 class WebMouseEvent; |
| 30 | 27 |
| 31 typedef CWinTraits<WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, 0> | 28 typedef CWinTraits<WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS, 0> |
| 32 RenderWidgetHostHWNDTraits; | 29 RenderWidgetHostHWNDTraits; |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 // Whether the renderer is made accessible. | 274 // Whether the renderer is made accessible. |
| 278 // 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 |
| 279 // until that bug is fixed. | 276 // until that bug is fixed. |
| 280 bool renderer_accessible_; | 277 bool renderer_accessible_; |
| 281 | 278 |
| 282 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 279 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 283 }; | 280 }; |
| 284 | 281 |
| 285 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 282 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 286 | 283 |
| OLD | NEW |