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

Unified Diff: chrome/browser/ui/webui/options2/options_ui2.cc

Issue 9703039: Extensions: Don't pass the selected unpacked extension path from JS to C++ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 9 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/ui/webui/options2/options_ui2.cc
diff --git a/chrome/browser/ui/webui/options2/options_ui2.cc b/chrome/browser/ui/webui/options2/options_ui2.cc
index fe559e6f1248692d3a8531270d1bbed51d08ef22..f676b753374be6e01c4bcf11fd02c28804f05bc0 100644
--- a/chrome/browser/ui/webui/options2/options_ui2.cc
+++ b/chrome/browser/ui/webui/options2/options_ui2.cc
@@ -82,13 +82,15 @@
#endif
using content::RenderViewHost;
-using content::WebContents;
-using content::WebUIMessageHandler;
-namespace options2 {
+namespace {
+
+const char kLocalizedStringsFile[] = "strings.js";
+const char kOptionsBundleJsFile[] = "options_bundle.js";
-static const char kLocalizedStringsFile[] = "strings.js";
-static const char kOptionsBundleJsFile[] = "options_bundle.js";
+} // namespace
+
+namespace options2 {
////////////////////////////////////////////////////////////////////////////////
//

Powered by Google App Engine
This is Rietveld 408576698