| 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 "android_webview/browser/aw_web_preferences_populater.h" | 8 #include "android_webview/browser/aw_web_preferences_populater.h" |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 const GURL& source_origin, | 126 const GURL& source_origin, |
| 127 WindowContainerType container_type, | 127 WindowContainerType container_type, |
| 128 const GURL& target_url, | 128 const GURL& target_url, |
| 129 const content::Referrer& referrer, | 129 const content::Referrer& referrer, |
| 130 WindowOpenDisposition disposition, | 130 WindowOpenDisposition disposition, |
| 131 const blink::WebWindowFeatures& features, | 131 const blink::WebWindowFeatures& features, |
| 132 bool user_gesture, | 132 bool user_gesture, |
| 133 bool opener_suppressed, | 133 bool opener_suppressed, |
| 134 content::ResourceContext* context, | 134 content::ResourceContext* context, |
| 135 int render_process_id, | 135 int render_process_id, |
| 136 bool is_guest, | |
| 137 int opener_id, | 136 int opener_id, |
| 138 bool* no_javascript_access) OVERRIDE; | 137 bool* no_javascript_access) OVERRIDE; |
| 139 virtual std::string GetWorkerProcessTitle( | 138 virtual std::string GetWorkerProcessTitle( |
| 140 const GURL& url, | 139 const GURL& url, |
| 141 content::ResourceContext* context) OVERRIDE; | 140 content::ResourceContext* context) OVERRIDE; |
| 142 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 141 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 143 virtual net::NetLog* GetNetLog() OVERRIDE; | 142 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 144 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 143 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 145 virtual bool IsFastShutdownPossible() OVERRIDE; | 144 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 146 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 145 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 173 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; | 172 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; |
| 174 | 173 |
| 175 JniDependencyFactory* native_factory_; | 174 JniDependencyFactory* native_factory_; |
| 176 | 175 |
| 177 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); | 176 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); |
| 178 }; | 177 }; |
| 179 | 178 |
| 180 } // namespace android_webview | 179 } // namespace android_webview |
| 181 | 180 |
| 182 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 181 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |