| 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_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> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "content/public/browser/notification_registrar.h" | 24 #include "content/public/browser/notification_registrar.h" |
| 25 #include "ui/base/gestures/gesture_recognizer.h" | 25 #include "ui/base/gestures/gesture_recognizer.h" |
| 26 #include "ui/base/gestures/gesture_types.h" | 26 #include "ui/base/gestures/gesture_types.h" |
| 27 #include "ui/base/ime/text_input_client.h" | 27 #include "ui/base/ime/text_input_client.h" |
| 28 #include "ui/base/ime/win/tsf_bridge.h" | 28 #include "ui/base/ime/win/tsf_bridge.h" |
| 29 #include "ui/base/win/extra_sdk_defines.h" | 29 #include "ui/base/win/extra_sdk_defines.h" |
| 30 #include "ui/base/win/ime_input.h" | 30 #include "ui/base/win/ime_input.h" |
| 31 #include "ui/gfx/native_widget_types.h" | 31 #include "ui/gfx/native_widget_types.h" |
| 32 #include "ui/gfx/point.h" | 32 #include "ui/gfx/point.h" |
| 33 #include "ui/surface/accelerated_surface_win.h" | 33 #include "ui/surface/accelerated_surface_win.h" |
| 34 #include "webkit/glue/webcursor.h" | 34 #include "webkit/common/cursors/webcursor.h" |
| 35 | 35 |
| 36 class SkRegion; | 36 class SkRegion; |
| 37 | 37 |
| 38 namespace gfx { | 38 namespace gfx { |
| 39 class Size; | 39 class Size; |
| 40 class Rect; | 40 class Rect; |
| 41 } | 41 } |
| 42 | 42 |
| 43 namespace IPC { | 43 namespace IPC { |
| 44 class Message; | 44 class Message; |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 594 |
| 595 // The OS-provided default IAccessible instance for our hwnd. | 595 // The OS-provided default IAccessible instance for our hwnd. |
| 596 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 596 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
| 597 | 597 |
| 598 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 598 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
| 599 }; | 599 }; |
| 600 | 600 |
| 601 } // namespace content | 601 } // namespace content |
| 602 | 602 |
| 603 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 603 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
| OLD | NEW |