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

Unified Diff: chrome/tools/mac_helpers/infoplist_strings_util.mm

Issue 635623003: Cleanup: Better constify some strings in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix mac 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
« no previous file with comments | « chrome/test/chromedriver/window_commands.cc ('k') | chrome/tools/profile_reset/jtl_compiler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/mac_helpers/infoplist_strings_util.mm
diff --git a/chrome/tools/mac_helpers/infoplist_strings_util.mm b/chrome/tools/mac_helpers/infoplist_strings_util.mm
index bd540efb4ea02b317f66e18ed4a1c3a23bb53440..765969febc97934345093942c7173055d47a8bb7 100644
--- a/chrome/tools/mac_helpers/infoplist_strings_util.mm
+++ b/chrome/tools/mac_helpers/infoplist_strings_util.mm
@@ -145,8 +145,8 @@ NSString* EscapeForStringsFileValue(NSString* str) {
}
// The valid types for the -t arg
-const char* kAppType_Main = "main"; // Main app
-const char* kAppType_Helper = "helper"; // Helper app
+const char kAppType_Main[] = "main"; // Main app
+const char kAppType_Helper[] = "helper"; // Helper app
} // namespace
« no previous file with comments | « chrome/test/chromedriver/window_commands.cc ('k') | chrome/tools/profile_reset/jtl_compiler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698