| Index: cloud_print/gcp20/prototype/printer.cc | 
| diff --git a/cloud_print/gcp20/prototype/printer.cc b/cloud_print/gcp20/prototype/printer.cc | 
| index cafb446fb31b8304161624bed966ecaf988b3476..dc9d04245d3058a356f959ff1ee9b943a54c7027 100644 | 
| --- a/cloud_print/gcp20/prototype/printer.cc | 
| +++ b/cloud_print/gcp20/prototype/printer.cc | 
| @@ -413,7 +413,7 @@ bool Printer::CheckXPrivetTokenHeader(const std::string& token) const { | 
| const base::DictionaryValue& Printer::GetCapabilities() { | 
| if (!state_.cdd.get()) { | 
| std::string cdd_string; | 
| -    ReplaceChars(kCdd, "'", "\"", &cdd_string); | 
| +    base::ReplaceChars(kCdd, "'", "\"", &cdd_string); | 
| scoped_ptr<base::Value> json_val(base::JSONReader::Read(cdd_string)); | 
| base::DictionaryValue* json = NULL; | 
| CHECK(json_val->GetAsDictionary(&json)); | 
|  |