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

Unified Diff: chrome/browser/extensions/extension_webrequest_api.cc

Issue 8869003: Move the "extension" namespace from extension_api.json into extension_api_extension.json. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/extension_webrequest_api.cc
diff --git a/chrome/browser/extensions/extension_webrequest_api.cc b/chrome/browser/extensions/extension_webrequest_api.cc
index 21fdce999a3972471a2c01db13682e295a4a6f28..c00015d71d436147930e3c9fa4d2cf17fa6979c5 100644
--- a/chrome/browser/extensions/extension_webrequest_api.cc
+++ b/chrome/browser/extensions/extension_webrequest_api.cc
@@ -272,8 +272,8 @@ DictionaryValue* ToHeaderDictionary(const std::string& name,
return header;
}
-// Creates a list of HttpHeaders (see extension_api.json). If |headers| is
-// NULL, the list is empty. Ownership is passed to the caller.
+// Creates a list of HttpHeaders (see api/). If |headers| is NULL, the list is
+// empty. Ownership is passed to the caller.
ListValue* GetResponseHeadersList(const net::HttpResponseHeaders* headers) {
ListValue* headers_value = new ListValue();
if (headers) {

Powered by Google App Engine
This is Rietveld 408576698