summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/extensions/custom_bindings_util.cc
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-31 05:12:01 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-31 05:12:01 +0000
commit6c377605a796251d51efe70e903218a6f2ea78b4 (patch)
tree17856a10bed983bd548040a4b19924be9d9b332b /chrome/renderer/extensions/custom_bindings_util.cc
parenta9b16dd01eea5070cab620a1177a05a6b43677ee (diff)
downloadchromium_src-6c377605a796251d51efe70e903218a6f2ea78b4.zip
chromium_src-6c377605a796251d51efe70e903218a6f2ea78b4.tar.gz
chromium_src-6c377605a796251d51efe70e903218a6f2ea78b4.tar.bz2
Put the Extension Storage API back under experimental until the next release.
There are a couple of missing pieces, notably turning on the sync feature by default (blocked on writing integration tests). This patch will be reverted ASAP after the next release build is stable. BUG= TEST=browser_tests --gtest_filter=ExtensionSettings*; unit_tests --gtest_filter=ExtensionSettings* Review URL: http://codereview.chromium.org/9233043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/extensions/custom_bindings_util.cc')
-rw-r--r--chrome/renderer/extensions/custom_bindings_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/extensions/custom_bindings_util.cc b/chrome/renderer/extensions/custom_bindings_util.cc
index 08fb523..0d350e3 100644
--- a/chrome/renderer/extensions/custom_bindings_util.cc
+++ b/chrome/renderer/extensions/custom_bindings_util.cc
@@ -38,7 +38,7 @@ std::vector<v8::Extension*> GetAll(ExtensionDispatcher* extension_dispatcher) {
"extensions/input.ime_custom_bindings.js",
"extensions/omnibox_custom_bindings.js",
"extensions/page_action_custom_bindings.js",
- "extensions/storage_custom_bindings.js",
+ "extensions/experimental.storage_custom_bindings.js",
"extensions/tts_engine_custom_bindings.js",
"extensions/types_custom_bindings.js",
"extensions/windows_custom_bindings.js",
@@ -53,7 +53,7 @@ std::vector<v8::Extension*> GetAll(ExtensionDispatcher* extension_dispatcher) {
IDR_INPUT_IME_CUSTOM_BINDINGS_JS,
IDR_OMNIBOX_CUSTOM_BINDINGS_JS,
IDR_PAGE_ACTION_CUSTOM_BINDINGS_JS,
- IDR_STORAGE_CUSTOM_BINDINGS_JS,
+ IDR_EXPERIMENTAL_STORAGE_CUSTOM_BINDINGS_JS,
IDR_TTS_ENGINE_CUSTOM_BINDINGS_JS,
IDR_TYPES_CUSTOM_BINDINGS_JS,
IDR_WINDOWS_CUSTOM_BINDINGS_JS,