| 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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "content/public/browser/render_process_host_observer.h" | 27 #include "content/public/browser/render_process_host_observer.h" |
| 28 #include "content/public/browser/render_view_host.h" | 28 #include "content/public/browser/render_view_host.h" |
| 29 #include "content/public/common/window_container_type.h" | 29 #include "content/public/common/window_container_type.h" |
| 30 #include "net/base/load_states.h" | 30 #include "net/base/load_states.h" |
| 31 #include "third_party/WebKit/public/web/WebAXEnums.h" | 31 #include "third_party/WebKit/public/web/WebAXEnums.h" |
| 32 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 32 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 33 #include "third_party/WebKit/public/web/WebPopupType.h" | 33 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 34 #include "third_party/skia/include/core/SkColor.h" | 34 #include "third_party/skia/include/core/SkColor.h" |
| 35 #include "ui/base/window_open_disposition.h" | 35 #include "ui/base/window_open_disposition.h" |
| 36 | 36 |
| 37 class SkBitmap; | |
| 38 | |
| 39 namespace content { | 37 namespace content { |
| 40 | 38 |
| 41 class PageState; | 39 class PageState; |
| 42 class SessionStorageNamespace; | 40 class SessionStorageNamespace; |
| 43 struct FrameReplicationState; | 41 struct FrameReplicationState; |
| 44 | 42 |
| 45 namespace mojom { | 43 namespace mojom { |
| 46 class CreateNewWindowParams; | 44 class CreateNewWindowParams; |
| 47 } | 45 } |
| 48 | 46 |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 bool render_view_ready_on_process_launch_; | 347 bool render_view_ready_on_process_launch_; |
| 350 | 348 |
| 351 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 349 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 352 | 350 |
| 353 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 351 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 354 }; | 352 }; |
| 355 | 353 |
| 356 } // namespace content | 354 } // namespace content |
| 357 | 355 |
| 358 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 356 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |