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

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

Issue 635573005: Cleanup: Better constify some strings in chrome/browser/{chromeos,extensions}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cros, really Created 6 years, 2 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/extensions/extension_nacl_browsertest.cc
diff --git a/chrome/browser/extensions/extension_nacl_browsertest.cc b/chrome/browser/extensions/extension_nacl_browsertest.cc
index 4cdcf8ded2e0772e549c80b6924b309d9f03e801..7bbc42215fd1d5fe4b0b580136e4eeeb7f85f189 100644
--- a/chrome/browser/extensions/extension_nacl_browsertest.cc
+++ b/chrome/browser/extensions/extension_nacl_browsertest.cc
@@ -31,7 +31,7 @@ using extensions::Manifest;
namespace {
-const char* kExtensionId = "bjjcibdiodkkeanflmiijlcfieiemced";
+const char kExtensionId[] = "bjjcibdiodkkeanflmiijlcfieiemced";
// This class tests that the Native Client plugin is blocked unless the
// .nexe is part of an extension from the Chrome Webstore.
@@ -143,7 +143,6 @@ class NaClExtensionTest : public ExtensionBrowserTest {
CheckPluginsCreated(extension->GetResourceURL("test.html"),
expected_to_succeed);
}
-
};
// Test that the NaCl plugin isn't blocked for Webstore extensions.

Powered by Google App Engine
This is Rietveld 408576698