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

Unified Diff: chrome/renderer/extensions/custom_bindings_util.cc

Issue 9317072: Allow omitting optional parameters for Extensions API functions (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Don't need this custom binding anymore. Created 8 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/renderer/extensions/custom_bindings_util.cc
diff --git a/chrome/renderer/extensions/custom_bindings_util.cc b/chrome/renderer/extensions/custom_bindings_util.cc
index 08fb52397b94e569bf832ebdb61663e84b184297..b56c408c4fd5ee32a26870d71f071e34a143c36f 100644
--- a/chrome/renderer/extensions/custom_bindings_util.cc
+++ b/chrome/renderer/extensions/custom_bindings_util.cc
@@ -41,7 +41,6 @@ std::vector<v8::Extension*> GetAll(ExtensionDispatcher* extension_dispatcher) {
"extensions/storage_custom_bindings.js",
"extensions/tts_engine_custom_bindings.js",
"extensions/types_custom_bindings.js",
- "extensions/windows_custom_bindings.js",
};
static const size_t kJavascriptFilesSize = arraysize(kJavascriptFiles);
@@ -56,7 +55,6 @@ std::vector<v8::Extension*> GetAll(ExtensionDispatcher* extension_dispatcher) {
IDR_STORAGE_CUSTOM_BINDINGS_JS,
IDR_TTS_ENGINE_CUSTOM_BINDINGS_JS,
IDR_TYPES_CUSTOM_BINDINGS_JS,
- IDR_WINDOWS_CUSTOM_BINDINGS_JS,
};
static const size_t kResourceIDsSize = arraysize(kResourceIDs);

Powered by Google App Engine
This is Rietveld 408576698