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. |