| 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 14 matching lines...) Expand all Loading... |
| 25 #include "content/browser/site_instance_impl.h" | 25 #include "content/browser/site_instance_impl.h" |
| 26 #include "content/public/browser/notification_observer.h" | 26 #include "content/public/browser/notification_observer.h" |
| 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/mojo/window_open_disposition.mojom.h" |
| 35 | 36 |
| 36 namespace content { | 37 namespace content { |
| 37 | 38 |
| 38 struct FrameReplicationState; | 39 struct FrameReplicationState; |
| 39 | 40 |
| 40 // This implements the RenderViewHost interface that is exposed to | 41 // This implements the RenderViewHost interface that is exposed to |
| 41 // embedders of content, and adds things only visible to content. | 42 // embedders of content, and adds things only visible to content. |
| 42 // | 43 // |
| 43 // The exact API of this object needs to be more thoroughly designed. Right | 44 // The exact API of this object needs to be more thoroughly designed. Right |
| 44 // now it mimics what WebContentsImpl exposed, which is a fairly large API and | 45 // now it mimics what WebContentsImpl exposed, which is a fairly large API and |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 bool render_view_ready_on_process_launch_; | 318 bool render_view_ready_on_process_launch_; |
| 318 | 319 |
| 319 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; | 320 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; |
| 320 | 321 |
| 321 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 322 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
| 322 }; | 323 }; |
| 323 | 324 |
| 324 } // namespace content | 325 } // namespace content |
| 325 | 326 |
| 326 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 327 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
| OLD | NEW |