| 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_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/i18n/rtl.h" | 13 #include "base/i18n/rtl.h" |
| 14 #include "base/process_util.h" | 14 #include "base/process_util.h" |
| 15 #include "base/string16.h" | 15 #include "base/string16.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/public/common/view_type.h" | 17 #include "content/public/common/view_type.h" |
| 18 #include "ipc/ipc_channel.h" | 18 #include "ipc/ipc_channel.h" |
| 19 #include "net/base/load_states.h" | 19 #include "net/base/load_states.h" |
| 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
| 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
| 22 #include "ui/base/javascript_message_type.h" | 22 #include "ui/base/javascript_message_type.h" |
| 23 #include "webkit/glue/window_open_disposition.h" | 23 #include "webkit/glue/window_open_disposition.h" |
| 24 | 24 |
| 25 class GURL; | 25 class GURL; |
| 26 class RenderViewHost; | |
| 27 class SkBitmap; | 26 class SkBitmap; |
| 28 class TabContents; | 27 class TabContents; |
| 29 class WebKeyboardEvent; | 28 class WebKeyboardEvent; |
| 30 struct NativeWebKeyboardEvent; | 29 struct NativeWebKeyboardEvent; |
| 31 struct ViewHostMsg_CreateWindow_Params; | 30 struct ViewHostMsg_CreateWindow_Params; |
| 32 struct ViewHostMsg_FrameNavigate_Params; | 31 struct ViewHostMsg_FrameNavigate_Params; |
| 33 struct WebDropData; | 32 struct WebDropData; |
| 34 struct WebMenuItem; | 33 struct WebMenuItem; |
| 35 struct WebPreferences; | 34 struct WebPreferences; |
| 36 | 35 |
| 37 namespace base { | 36 namespace base { |
| 38 class ListValue; | 37 class ListValue; |
| 39 } | 38 } |
| 40 | 39 |
| 41 namespace gfx { | 40 namespace gfx { |
| 42 class Point; | 41 class Point; |
| 43 class Rect; | 42 class Rect; |
| 44 class Size; | 43 class Size; |
| 45 } | 44 } |
| 46 | 45 |
| 47 namespace content { | 46 namespace content { |
| 48 | 47 |
| 49 class BrowserContext; | 48 class BrowserContext; |
| 49 class RenderViewHost; |
| 50 class WebContents; | 50 class WebContents; |
| 51 struct ContextMenuParams; | 51 struct ContextMenuParams; |
| 52 struct FileChooserParams; | 52 struct FileChooserParams; |
| 53 struct GlobalRequestID; | 53 struct GlobalRequestID; |
| 54 struct Referrer; | 54 struct Referrer; |
| 55 struct RendererPreferences; | 55 struct RendererPreferences; |
| 56 | 56 |
| 57 // | 57 // |
| 58 // RenderViewHostDelegate | 58 // RenderViewHostDelegate |
| 59 // | 59 // |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 // Notification that the view has lost the mouse lock. | 403 // Notification that the view has lost the mouse lock. |
| 404 virtual void LostMouseLock() {} | 404 virtual void LostMouseLock() {} |
| 405 | 405 |
| 406 protected: | 406 protected: |
| 407 virtual ~RenderViewHostDelegate() {} | 407 virtual ~RenderViewHostDelegate() {} |
| 408 }; | 408 }; |
| 409 | 409 |
| 410 } // namespace content | 410 } // namespace content |
| 411 | 411 |
| 412 #endif // CONTENT_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ | 412 #endif // CONTENT_PUBLIC_BROWSER_RENDER_VIEW_HOST_DELEGATE_H_ |
| OLD | NEW |