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

Unified Diff: chrome/browser/webdata/web_data_service_test_util.h

Issue 12695015: Split Autofill webdata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pure merge to 12853004 (move table creation to factory) 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/webdata/web_data_service_test_util.h
diff --git a/chrome/browser/webdata/web_data_service_test_util.h b/chrome/browser/webdata/web_data_service_test_util.h
index 04476586d52c8e0c6471f698a1d76d7eae3c2e4d..3658f9053878f1c604d87f705081ed0e050cce00 100644
--- a/chrome/browser/webdata/web_data_service_test_util.h
+++ b/chrome/browser/webdata/web_data_service_test_util.h
@@ -55,14 +55,20 @@ class MockWebDataServiceWrapperBase : public WebDataServiceWrapper {
// serve it up via GetWebData().
class MockWebDataServiceWrapper : public MockWebDataServiceWrapperBase {
public:
- explicit MockWebDataServiceWrapper(
- scoped_refptr<WebDataService> fake_service);
+
+ MockWebDataServiceWrapper(
+ scoped_refptr<WebDataService> fake_service,
+ scoped_refptr<AutofillWebDataService> fake_autofill);
+
virtual ~MockWebDataServiceWrapper();
virtual scoped_refptr<WebDataService> GetWebData() OVERRIDE;
+ virtual scoped_refptr<AutofillWebDataService> GetAutofillWebData() OVERRIDE;
+
protected:
scoped_refptr<WebDataService> fake_web_data_service_;
+ scoped_refptr<AutofillWebDataService> fake_autofill_web_data_;
private:
DISALLOW_COPY_AND_ASSIGN(MockWebDataServiceWrapper);

Powered by Google App Engine
This is Rietveld 408576698