| 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 #include "android_webview/browser/aw_content_browser_client.h" | 5 #include "android_webview/browser/aw_content_browser_client.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "android_webview/browser/aw_browser_context.h" | 9 #include "android_webview/browser/aw_browser_context.h" |
| 10 #include "android_webview/browser/aw_browser_main_parts.h" | 10 #include "android_webview/browser/aw_browser_main_parts.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "content/public/browser/client_certificate_delegate.h" | 39 #include "content/public/browser/client_certificate_delegate.h" |
| 40 #include "content/public/browser/navigation_handle.h" | 40 #include "content/public/browser/navigation_handle.h" |
| 41 #include "content/public/browser/navigation_throttle.h" | 41 #include "content/public/browser/navigation_throttle.h" |
| 42 #include "content/public/browser/render_frame_host.h" | 42 #include "content/public/browser/render_frame_host.h" |
| 43 #include "content/public/browser/render_process_host.h" | 43 #include "content/public/browser/render_process_host.h" |
| 44 #include "content/public/browser/render_view_host.h" | 44 #include "content/public/browser/render_view_host.h" |
| 45 #include "content/public/browser/web_contents.h" | 45 #include "content/public/browser/web_contents.h" |
| 46 #include "content/public/common/content_switches.h" | 46 #include "content/public/common/content_switches.h" |
| 47 #include "content/public/common/url_constants.h" | 47 #include "content/public/common/url_constants.h" |
| 48 #include "content/public/common/web_preferences.h" | 48 #include "content/public/common/web_preferences.h" |
| 49 #include "device/geolocation/access_token_store.h" |
| 50 #include "device/geolocation/geolocation_delegate.h" |
| 49 #include "net/android/network_library.h" | 51 #include "net/android/network_library.h" |
| 50 #include "net/ssl/ssl_cert_request_info.h" | 52 #include "net/ssl/ssl_cert_request_info.h" |
| 51 #include "net/ssl/ssl_info.h" | 53 #include "net/ssl/ssl_info.h" |
| 52 #include "ui/base/resource/resource_bundle.h" | 54 #include "ui/base/resource/resource_bundle.h" |
| 53 #include "ui/base/resource/resource_bundle_android.h" | 55 #include "ui/base/resource/resource_bundle_android.h" |
| 54 #include "ui/resources/grit/ui_resources.h" | 56 #include "ui/resources/grit/ui_resources.h" |
| 55 | 57 |
| 56 using content::BrowserThread; | 58 using content::BrowserThread; |
| 57 using content::ResourceType; | 59 using content::ResourceType; |
| 58 | 60 |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 | 507 |
| 506 #if defined(VIDEO_HOLE) | 508 #if defined(VIDEO_HOLE) |
| 507 content::ExternalVideoSurfaceContainer* | 509 content::ExternalVideoSurfaceContainer* |
| 508 AwContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 510 AwContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 509 content::WebContents* web_contents) { | 511 content::WebContents* web_contents) { |
| 510 return native_factory_->CreateExternalVideoSurfaceContainer(web_contents); | 512 return native_factory_->CreateExternalVideoSurfaceContainer(web_contents); |
| 511 } | 513 } |
| 512 #endif | 514 #endif |
| 513 | 515 |
| 514 } // namespace android_webview | 516 } // namespace android_webview |
| OLD | NEW |