| 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_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ | 5 #ifndef CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ |
| 6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ | 6 #define CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "content/public/browser/render_widget_host_view.h" | 13 #include "content/public/browser/render_widget_host_view.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
| 15 #include "ui/base/ime/text_input_type.h" | 15 #include "ui/base/ime/text_input_type.h" |
| 16 #include "ui/gfx/surface/transport_dib.h" | |
| 17 #include "ui/base/range/range.h" | 16 #include "ui/base/range/range.h" |
| 17 #include "ui/surface/transport_dib.h" |
| 18 | 18 |
| 19 class BackingStore; | 19 class BackingStore; |
| 20 class WebCursor; | 20 class WebCursor; |
| 21 | 21 |
| 22 struct AccessibilityHostMsg_NotificationParams; | 22 struct AccessibilityHostMsg_NotificationParams; |
| 23 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; | 23 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; |
| 24 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; | 24 struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; |
| 25 struct NativeWebKeyboardEvent; | 25 struct NativeWebKeyboardEvent; |
| 26 | 26 |
| 27 namespace webkit { | 27 namespace webkit { |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 virtual BrowserAccessibilityManager* | 264 virtual BrowserAccessibilityManager* |
| 265 GetBrowserAccessibilityManager() const = 0; | 265 GetBrowserAccessibilityManager() const = 0; |
| 266 virtual void OnAccessibilityNotifications( | 266 virtual void OnAccessibilityNotifications( |
| 267 const std::vector<AccessibilityHostMsg_NotificationParams>& params) { | 267 const std::vector<AccessibilityHostMsg_NotificationParams>& params) { |
| 268 } | 268 } |
| 269 }; | 269 }; |
| 270 | 270 |
| 271 } // namespace content | 271 } // namespace content |
| 272 | 272 |
| 273 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ | 273 #endif // CONTENT_PORT_BROWSER_RENDER_WIDGET_HOST_VIEW_PORT_H_ |
| OLD | NEW |