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

Side by Side Diff: chrome/browser/webdata/autofill_web_data_service_impl.cc

Issue 12851008: Create a common base class for all the webdatas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to committed parent and head. Created 7 years, 9 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 | Annotate | Revision Log
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 #include "chrome/browser/webdata/autofill_web_data_service_impl.h" 5 #include "chrome/browser/webdata/autofill_web_data_service_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/webdata/web_data_service.h" 8 #include "chrome/browser/webdata/web_data_service.h"
9 9
10 AutofillWebDataServiceImpl::AutofillWebDataServiceImpl( 10 AutofillWebDataServiceImpl::AutofillWebDataServiceImpl(
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 } 78 }
79 79
80 void AutofillWebDataServiceImpl::CancelRequest(Handle h) { 80 void AutofillWebDataServiceImpl::CancelRequest(Handle h) {
81 service_->CancelRequest(h); 81 service_->CancelRequest(h);
82 } 82 }
83 83
84 content::NotificationSource 84 content::NotificationSource
85 AutofillWebDataServiceImpl::GetNotificationSource() { 85 AutofillWebDataServiceImpl::GetNotificationSource() {
86 return service_->GetNotificationSource(); 86 return service_->GetNotificationSource();
87 } 87 }
88
89 bool AutofillWebDataServiceImpl::IsDatabaseLoaded() {
90 return service_->IsDatabaseLoaded();
91 }
92
93 WebDatabase* AutofillWebDataServiceImpl::GetDatabase() {
94 return service_->GetDatabase();
95 }
OLDNEW
« no previous file with comments | « chrome/browser/webdata/autofill_web_data_service_impl.h ('k') | chrome/browser/webdata/web_data_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698