Chromium Code Reviews| Index: chrome/browser/browsing_data/browsing_data_remover_unittest.cc |
| diff --git a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc |
| index 15c5b01d26d0fc86754444e2fcc1e1b4b48f3d6f..85d7a7155e73cc958214c8d4cb7ee891ff1b7832 100644 |
| --- a/chrome/browser/browsing_data/browsing_data_remover_unittest.cc |
| +++ b/chrome/browser/browsing_data/browsing_data_remover_unittest.cc |
| @@ -166,6 +166,14 @@ class TestStoragePartition : public StoragePartition { |
| return NULL; |
| } |
| + virtual content::HostZoomMap* GetHostZoomMap() OVERRIDE { |
| + return NULL; |
| + } |
| + |
| + virtual PrefService* GetZoomLevelPrefs() OVERRIDE { |
| + return NULL; |
| + } |
| + |
| virtual void ClearDataForOrigin(uint32 remove_mask, |
| uint32 quota_storage_remove_mask, |
| const GURL& storage_origin, |
| @@ -177,7 +185,6 @@ class TestStoragePartition : public StoragePartition { |
| base::Unretained(this), |
| callback)); |
| } |
|
awong
2014/08/20 19:56:58
nit: why delete this line?
wjmaclean
2014/08/20 20:15:45
Not intentional. Fixed.
|
| - |
| virtual void ClearData(uint32 remove_mask, |
| uint32 quota_storage_remove_mask, |
| const GURL& storage_origin, |