| OLD | NEW |
| 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/extensions/settings/settings_storage.h" | 10 #include "chrome/browser/extensions/settings/settings_storage.h" |
| 11 | 11 |
| 12 namespace extensions { | 12 namespace extensions { |
| 13 | 13 |
| 14 // Settings storage area which fails every request. | 14 // Settings storage area which fails every request. |
| 15 class FailingSettingsStorage : public SettingsStorage { | 15 class FailingSettingsStorage : public SettingsStorage { |
| 16 public: | 16 public: |
| 17 FailingSettingsStorage() {} | 17 FailingSettingsStorage() {} |
| 18 | 18 |
| 19 // SettingsStorage implementation. | 19 // SettingsStorage implementation. |
| 20 virtual size_t GetBytesInUse(const std::string& key) OVERRIDE; |
| 21 virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE; |
| 22 virtual size_t GetBytesInUse() OVERRIDE; |
| 20 virtual ReadResult Get(const std::string& key) OVERRIDE; | 23 virtual ReadResult Get(const std::string& key) OVERRIDE; |
| 21 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE; | 24 virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE; |
| 22 virtual ReadResult Get() OVERRIDE; | 25 virtual ReadResult Get() OVERRIDE; |
| 23 virtual WriteResult Set( | 26 virtual WriteResult Set( |
| 24 WriteOptions options, | 27 WriteOptions options, |
| 25 const std::string& key, | 28 const std::string& key, |
| 26 const Value& value) OVERRIDE; | 29 const Value& value) OVERRIDE; |
| 27 virtual WriteResult Set( | 30 virtual WriteResult Set( |
| 28 WriteOptions options, const DictionaryValue& values) OVERRIDE; | 31 WriteOptions options, const DictionaryValue& values) OVERRIDE; |
| 29 virtual WriteResult Remove(const std::string& key) OVERRIDE; | 32 virtual WriteResult Remove(const std::string& key) OVERRIDE; |
| 30 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE; | 33 virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE; |
| 31 virtual WriteResult Clear() OVERRIDE; | 34 virtual WriteResult Clear() OVERRIDE; |
| 32 | 35 |
| 33 private: | 36 private: |
| 34 DISALLOW_COPY_AND_ASSIGN(FailingSettingsStorage); | 37 DISALLOW_COPY_AND_ASSIGN(FailingSettingsStorage); |
| 35 }; | 38 }; |
| 36 | 39 |
| 37 } // namespace extensions | 40 } // namespace extensions |
| 38 | 41 |
| 39 #endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ | 42 #endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_FAILING_SETTINGS_STORAGE_H_ |
| OLD | NEW |