| 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_VIEW_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/process/kill.h" | 12 #include "base/process/kill.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "content/browser/dom_storage/session_storage_namespace_impl.h" | 14 #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
| 15 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 16 #include "content/public/common/page_transition_types.h" | |
| 17 #include "net/base/load_states.h" | 16 #include "net/base/load_states.h" |
| 18 #include "third_party/WebKit/public/web/WebPopupType.h" | 17 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 19 #include "ui/base/window_open_disposition.h" | 18 #include "ui/base/window_open_disposition.h" |
| 20 | 19 |
| 21 class GURL; | 20 class GURL; |
| 22 class SkBitmap; | 21 class SkBitmap; |
| 23 struct ViewHostMsg_CreateWindow_Params; | 22 struct ViewHostMsg_CreateWindow_Params; |
| 24 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 23 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| 25 struct ViewMsg_PostMessage_Params; | 24 struct ViewMsg_PostMessage_Params; |
| 26 | 25 |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 // created by the RenderViewHost. | 282 // created by the RenderViewHost. |
| 284 virtual FrameTree* GetFrameTree(); | 283 virtual FrameTree* GetFrameTree(); |
| 285 | 284 |
| 286 protected: | 285 protected: |
| 287 virtual ~RenderViewHostDelegate() {} | 286 virtual ~RenderViewHostDelegate() {} |
| 288 }; | 287 }; |
| 289 | 288 |
| 290 } // namespace content | 289 } // namespace content |
| 291 | 290 |
| 292 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ | 291 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_DELEGATE_H_ |
| OLD | NEW |