Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(111)

Side by Side Diff: android_webview/browser/aw_browser_context.h

Issue 16212007: Implement the autofill UI for chromium powered android webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue15097004
Patch Set: move ui files Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_BROWSER_AW_BROWSER_CONTEXT_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "android_webview/browser/aw_autofill_manager_delegate.h"
11 #include "android_webview/browser/aw_download_manager_delegate.h" 10 #include "android_webview/browser/aw_download_manager_delegate.h"
12 #include "base/basictypes.h" 11 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
14 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
15 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
16 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
17 #include "components/visitedlink/browser/visitedlink_delegate.h" 16 #include "components/visitedlink/browser/visitedlink_delegate.h"
18 #include "content/public/browser/browser_context.h" 17 #include "content/public/browser/browser_context.h"
19 #include "content/public/browser/content_browser_client.h" 18 #include "content/public/browser/content_browser_client.h"
20 #include "content/public/browser/geolocation_permission_context.h" 19 #include "content/public/browser/geolocation_permission_context.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 private: 99 private:
101 // The file path where data for this context is persisted. 100 // The file path where data for this context is persisted.
102 base::FilePath context_storage_path_; 101 base::FilePath context_storage_path_;
103 102
104 JniDependencyFactory* native_factory_; 103 JniDependencyFactory* native_factory_;
105 scoped_refptr<AwURLRequestContextGetter> url_request_context_getter_; 104 scoped_refptr<AwURLRequestContextGetter> url_request_context_getter_;
106 scoped_refptr<content::GeolocationPermissionContext> 105 scoped_refptr<content::GeolocationPermissionContext>
107 geolocation_permission_context_; 106 geolocation_permission_context_;
108 scoped_ptr<AwQuotaManagerBridge> quota_manager_bridge_; 107 scoped_ptr<AwQuotaManagerBridge> quota_manager_bridge_;
109 scoped_ptr<AwFormDatabaseService> form_database_service_; 108 scoped_ptr<AwFormDatabaseService> form_database_service_;
110 scoped_ptr<AwAutofillManagerDelegate> autofill_manager_delegate_;
111 109
112 AwDownloadManagerDelegate download_manager_delegate_; 110 AwDownloadManagerDelegate download_manager_delegate_;
113 111
114 scoped_ptr<components::VisitedLinkMaster> visitedlink_master_; 112 scoped_ptr<components::VisitedLinkMaster> visitedlink_master_;
115 scoped_ptr<content::ResourceContext> resource_context_; 113 scoped_ptr<content::ResourceContext> resource_context_;
116 114
117 bool user_pref_service_ready_; 115 bool user_pref_service_ready_;
118 116
119 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 117 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
120 }; 118 };
121 119
122 } // namespace android_webview 120 } // namespace android_webview
123 121
124 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 122 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698