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

Unified Diff: chrome/browser/extensions/api/storage/storage_api.h

Issue 12330089: JSON compiler to include "customBindings" in the function name. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/extensions/api/storage/storage_api.h
===================================================================
--- chrome/browser/extensions/api/storage/storage_api.h (revision 182503)
+++ chrome/browser/extensions/api/storage/storage_api.h (working copy)
@@ -52,23 +52,23 @@
scoped_refptr<SettingsObserverList> observers_;
};
-class StorageGetFunction : public SettingsFunction {
+class StorageStorageAreaGetFunction : public SettingsFunction {
public:
DECLARE_EXTENSION_FUNCTION("storage.get", STORAGE_GET)
protected:
- virtual ~StorageGetFunction() {}
+ virtual ~StorageStorageAreaGetFunction() {}
// SettingsFunction:
virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
};
-class StorageSetFunction : public SettingsFunction {
+class StorageStorageAreaSetFunction : public SettingsFunction {
public:
DECLARE_EXTENSION_FUNCTION("storage.set", STORAGE_SET)
protected:
- virtual ~StorageSetFunction() {}
+ virtual ~StorageStorageAreaSetFunction() {}
// SettingsFunction:
virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
@@ -78,12 +78,12 @@
QuotaLimitHeuristics* heuristics) const OVERRIDE;
};
-class StorageRemoveFunction : public SettingsFunction {
+class StorageStorageAreaRemoveFunction : public SettingsFunction {
public:
DECLARE_EXTENSION_FUNCTION("storage.remove", STORAGE_REMOVE)
protected:
- virtual ~StorageRemoveFunction() {}
+ virtual ~StorageStorageAreaRemoveFunction() {}
// SettingsFunction:
virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
@@ -93,12 +93,12 @@
QuotaLimitHeuristics* heuristics) const OVERRIDE;
};
-class StorageClearFunction : public SettingsFunction {
+class StorageStorageAreaClearFunction : public SettingsFunction {
public:
DECLARE_EXTENSION_FUNCTION("storage.clear", STORAGE_CLEAR)
protected:
- virtual ~StorageClearFunction() {}
+ virtual ~StorageStorageAreaClearFunction() {}
// SettingsFunction:
virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
@@ -108,12 +108,12 @@
QuotaLimitHeuristics* heuristics) const OVERRIDE;
};
-class StorageGetBytesInUseFunction : public SettingsFunction {
+class StorageStorageAreaGetBytesInUseFunction : public SettingsFunction {
public:
DECLARE_EXTENSION_FUNCTION("storage.getBytesInUse", STORAGE_GETBYTESINUSE)
protected:
- virtual ~StorageGetBytesInUseFunction() {}
+ virtual ~StorageStorageAreaGetBytesInUseFunction() {}
// SettingsFunction:
virtual bool RunWithStorage(ValueStore* storage) OVERRIDE;
« no previous file with comments | « chrome/browser/extensions/api/declarative/declarative_api.cc ('k') | chrome/browser/extensions/api/storage/storage_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698