| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 const GURL& target_url, | 145 const GURL& target_url, |
| 146 const content::Referrer& referrer, | 146 const content::Referrer& referrer, |
| 147 WindowOpenDisposition disposition, | 147 WindowOpenDisposition disposition, |
| 148 const blink::WebWindowFeatures& features, | 148 const blink::WebWindowFeatures& features, |
| 149 bool user_gesture, | 149 bool user_gesture, |
| 150 bool opener_suppressed, | 150 bool opener_suppressed, |
| 151 content::ResourceContext* context, | 151 content::ResourceContext* context, |
| 152 int render_process_id, | 152 int render_process_id, |
| 153 int opener_id, | 153 int opener_id, |
| 154 bool* no_javascript_access) OVERRIDE; | 154 bool* no_javascript_access) OVERRIDE; |
| 155 virtual std::string GetWorkerProcessTitle( | |
| 156 const GURL& url, | |
| 157 content::ResourceContext* context) OVERRIDE; | |
| 158 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 155 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
| 159 virtual net::NetLog* GetNetLog() OVERRIDE; | 156 virtual net::NetLog* GetNetLog() OVERRIDE; |
| 160 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; | 157 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; |
| 161 virtual bool IsFastShutdownPossible() OVERRIDE; | 158 virtual bool IsFastShutdownPossible() OVERRIDE; |
| 162 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, | 159 virtual void UpdateInspectorSetting(content::RenderViewHost* rvh, |
| 163 const std::string& key, | 160 const std::string& key, |
| 164 const std::string& value) OVERRIDE; | 161 const std::string& value) OVERRIDE; |
| 165 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; | 162 virtual void ClearCache(content::RenderViewHost* rvh) OVERRIDE; |
| 166 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; | 163 virtual void ClearCookies(content::RenderViewHost* rvh) OVERRIDE; |
| 167 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; | 164 virtual base::FilePath GetDefaultDownloadDirectory() OVERRIDE; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 189 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; | 186 scoped_ptr<AwWebPreferencesPopulater> preferences_populater_; |
| 190 | 187 |
| 191 JniDependencyFactory* native_factory_; | 188 JniDependencyFactory* native_factory_; |
| 192 | 189 |
| 193 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); | 190 DISALLOW_COPY_AND_ASSIGN(AwContentBrowserClient); |
| 194 }; | 191 }; |
| 195 | 192 |
| 196 } // namespace android_webview | 193 } // namespace android_webview |
| 197 | 194 |
| 198 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ | 195 #endif // ANDROID_WEBVIEW_LIB_AW_CONTENT_BROWSER_CLIENT_H_ |
| OLD | NEW |