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

Unified Diff: chrome/utility/cloud_print/pwg_encoder.cc

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/tools/profile_reset/jtl_compiler_unittest.cc ('k') | chrome/utility/extensions/unpacker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/cloud_print/pwg_encoder.cc
diff --git a/chrome/utility/cloud_print/pwg_encoder.cc b/chrome/utility/cloud_print/pwg_encoder.cc
index 5246bd92a3882b809110ce668134be5a7ae57228..194ccdfe9eaa777178ba58b264bf6605a3edc2ac 100644
--- a/chrome/utility/cloud_print/pwg_encoder.cc
+++ b/chrome/utility/cloud_print/pwg_encoder.cc
@@ -24,7 +24,7 @@ const uint32 kGreenCoefficient = 7154;
const uint32 kBlueCoefficient = 721;
const uint32 kColorCoefficientDenominator = 10000;
-const char* kPwgKeyword = "RaS2";
+const char kPwgKeyword[] = "RaS2";
const uint32 kHeaderSize = 1796;
const uint32 kHeaderCupsDuplex = 272;
« no previous file with comments | « chrome/tools/profile_reset/jtl_compiler_unittest.cc ('k') | chrome/utility/extensions/unpacker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698