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

Unified Diff: components/autofill/core/browser/autofill_manager.h

Issue 17450010: Create AutofillDriverImpl unit test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to review 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
Index: components/autofill/core/browser/autofill_manager.h
diff --git a/components/autofill/core/browser/autofill_manager.h b/components/autofill/core/browser/autofill_manager.h
index 0b8345ddfc438a970a5cd1748b14a666b5972071..fc6af7e2bd5e7164dc6f2394ec0cbda582f132ca 100644
--- a/components/autofill/core/browser/autofill_manager.h
+++ b/components/autofill/core/browser/autofill_manager.h
@@ -85,7 +85,7 @@ class AutofillManager : public AutofillDownloadManager::Observer {
virtual ~AutofillManager();
// Set an external delegate.
- void SetExternalDelegate(AutofillExternalDelegate* delegate);
+ virtual void SetExternalDelegate(AutofillExternalDelegate* delegate);
Ilya Sherman 2013/06/21 20:19:24 nit: Does this still need to be virtual?
blundell 2013/06/22 06:29:06 Done.
// Whether browser process will create and own the Autofill popup UI.
bool IsNativeUiEnabled();
@@ -184,7 +184,7 @@ class AutofillManager : public AutofillDownloadManager::Observer {
const gfx::RectF& bounding_box);
// Resets cache.
- void Reset();
+ virtual void Reset();
protected:
// Test code should prefer to use this constructor.

Powered by Google App Engine
This is Rietveld 408576698