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

Unified Diff: android_webview/browser/aw_form_database_service.h

Issue 16154031: Un-refcount AutofillWebData and TokenWebData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on ToT 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/browser/aw_form_database_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_form_database_service.h
diff --git a/android_webview/browser/aw_form_database_service.h b/android_webview/browser/aw_form_database_service.h
index cb66d4e4dd74ce0d08555d33c6f0bbe7014fb4e6..ad1af3ee381f65240f0b312175954efb35351e9d 100644
--- a/android_webview/browser/aw_form_database_service.h
+++ b/android_webview/browser/aw_form_database_service.h
@@ -33,7 +33,7 @@ class AwFormDatabaseService : public WebDataServiceConsumer {
// Clear any saved form data. Executes asynchronously.
void ClearFormData();
- scoped_refptr<autofill::AutofillWebDataService>
+ autofill::AutofillWebDataService*
get_autofill_webdata_service();
// WebDataServiceConsumer implementation.
@@ -52,7 +52,7 @@ class AwFormDatabaseService : public WebDataServiceConsumer {
bool has_form_data_;
base::WaitableEvent completion_;
- scoped_refptr<autofill::AutofillWebDataService> autofill_data_;
+ scoped_ptr<autofill::AutofillWebDataService> autofill_data_;
scoped_refptr<WebDatabaseService> web_database_;
DISALLOW_COPY_AND_ASSIGN(AwFormDatabaseService);
« no previous file with comments | « no previous file | android_webview/browser/aw_form_database_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698