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

Unified Diff: chrome/common/extensions/user_script.cc

Issue 10696176: Move UserScript and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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/common/extensions/user_script.cc
diff --git a/chrome/common/extensions/user_script.cc b/chrome/common/extensions/user_script.cc
index 6ccfea42b3a98b2195ef9e3985fe972e89636707..0334e58497d6fc6f60ad65465b0ff35d388e981d 100644
--- a/chrome/common/extensions/user_script.cc
+++ b/chrome/common/extensions/user_script.cc
@@ -22,6 +22,8 @@ bool UrlMatchesGlobs(const std::vector<std::string>* globs,
} // namespace
+namespace extensions {
+
// static
const char UserScript::kFileExtension[] = ".user.js";
@@ -211,3 +213,5 @@ void UserScript::UnpickleScripts(const ::Pickle& pickle, PickleIterator* iter,
scripts->push_back(file);
}
}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698