| 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 ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ |
| 6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 void SelectClientCertificate( | 94 void SelectClientCertificate( |
| 95 content::WebContents* web_contents, | 95 content::WebContents* web_contents, |
| 96 net::SSLCertRequestInfo* cert_request_info, | 96 net::SSLCertRequestInfo* cert_request_info, |
| 97 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; | 97 std::unique_ptr<content::ClientCertificateDelegate> delegate) override; |
| 98 bool CanCreateWindow(const GURL& opener_url, | 98 bool CanCreateWindow(const GURL& opener_url, |
| 99 const GURL& opener_top_level_frame_url, | 99 const GURL& opener_top_level_frame_url, |
| 100 const GURL& source_origin, | 100 const GURL& source_origin, |
| 101 WindowContainerType container_type, | 101 WindowContainerType container_type, |
| 102 const GURL& target_url, | 102 const GURL& target_url, |
| 103 const content::Referrer& referrer, | 103 const content::Referrer& referrer, |
| 104 const std::string& frame_name, |
| 104 WindowOpenDisposition disposition, | 105 WindowOpenDisposition disposition, |
| 105 const blink::WebWindowFeatures& features, | 106 const blink::WebWindowFeatures& features, |
| 106 bool user_gesture, | 107 bool user_gesture, |
| 107 bool opener_suppressed, | 108 bool opener_suppressed, |
| 108 content::ResourceContext* context, | 109 content::ResourceContext* context, |
| 109 int render_process_id, | 110 int render_process_id, |
| 110 int opener_render_view_id, | 111 int opener_render_view_id, |
| 111 int opener_render_frame_id, | 112 int opener_render_frame_id, |
| 112 bool* no_javascript_access) override; | 113 bool* no_javascript_access) override; |
| 113 void ResourceDispatcherHostCreated() override; | 114 void ResourceDispatcherHostCreated() override; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 std::unique_ptr<AwWebPreferencesPopulater> preferences_populater_; | 148 std::unique_ptr<AwWebPreferencesPopulater> preferences_populater_; |
| 148 | 149 |
| 149 JniDependencyFactory* native_factory_; | 150 JniDependencyFactory* native_factory_; |
| 150 | 151 |
| 151 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); | 152 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); |
| 152 }; | 153 }; |
| 153 | 154 |
| 154 } // namespace android_webview | 155 } // namespace android_webview |
| 155 | 156 |
| 156 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 157 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |