| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "headless/lib/browser/headless_web_contents_impl.h" | 5 #include "headless/lib/browser/headless_web_contents_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/trace_event/trace_event.h" | 10 #include "base/trace_event/trace_event.h" |
| 11 #include "content/public/browser/devtools_agent_host.h" | 11 #include "content/public/browser/devtools_agent_host.h" |
| 12 #include "content/public/browser/navigation_handle.h" | 12 #include "content/public/browser/navigation_handle.h" |
| 13 #include "content/public/browser/render_frame_host.h" | 13 #include "content/public/browser/render_frame_host.h" |
| 14 #include "content/public/browser/render_process_host.h" | 14 #include "content/public/browser/render_process_host.h" |
| 15 #include "content/public/browser/render_view_host.h" | 15 #include "content/public/browser/render_view_host.h" |
| 16 #include "content/public/browser/render_widget_host_view.h" | 16 #include "content/public/browser/render_widget_host_view.h" |
| 17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
| 18 #include "content/public/browser/web_contents_delegate.h" | 18 #include "content/public/browser/web_contents_delegate.h" |
| 19 #include "content/public/browser/web_contents_observer.h" | 19 #include "content/public/browser/web_contents_observer.h" |
| 20 #include "content/public/common/bindings_policy.h" | 20 #include "content/public/common/bindings_policy.h" |
| 21 #include "content/public/common/service_registry.h" | |
| 22 #include "content/public/renderer/render_frame.h" | 21 #include "content/public/renderer/render_frame.h" |
| 23 #include "headless/lib/browser/headless_browser_context_impl.h" | 22 #include "headless/lib/browser/headless_browser_context_impl.h" |
| 24 #include "headless/lib/browser/headless_browser_impl.h" | 23 #include "headless/lib/browser/headless_browser_impl.h" |
| 25 #include "headless/lib/browser/headless_browser_main_parts.h" | 24 #include "headless/lib/browser/headless_browser_main_parts.h" |
| 26 #include "headless/lib/browser/headless_devtools_client_impl.h" | 25 #include "headless/lib/browser/headless_devtools_client_impl.h" |
| 27 #include "ui/aura/window.h" | 26 #include "ui/aura/window.h" |
| 28 | 27 |
| 29 namespace headless { | 28 namespace headless { |
| 30 | 29 |
| 31 class WebContentsObserverAdapter : public content::WebContentsObserver { | 30 class WebContentsObserverAdapter : public content::WebContentsObserver { |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 HeadlessBrowserContext* browser_context) { | 193 HeadlessBrowserContext* browser_context) { |
| 195 browser_context_ = browser_context; | 194 browser_context_ = browser_context; |
| 196 return *this; | 195 return *this; |
| 197 } | 196 } |
| 198 | 197 |
| 199 HeadlessWebContents* HeadlessWebContents::Builder::Build() { | 198 HeadlessWebContents* HeadlessWebContents::Builder::Build() { |
| 200 return browser_->CreateWebContents(this); | 199 return browser_->CreateWebContents(this); |
| 201 } | 200 } |
| 202 | 201 |
| 203 } // namespace headless | 202 } // namespace headless |
| OLD | NEW |