diff options
Diffstat (limited to 'chrome/tools/profile_reset')
-rw-r--r-- | chrome/tools/profile_reset/jtl_compiler.cc | 4 | ||||
-rw-r--r-- | chrome/tools/profile_reset/jtl_parser.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/tools/profile_reset/jtl_compiler.cc b/chrome/tools/profile_reset/jtl_compiler.cc index 00ed0c4..df6a9ee 100644 --- a/chrome/tools/profile_reset/jtl_compiler.cc +++ b/chrome/tools/profile_reset/jtl_compiler.cc @@ -92,7 +92,7 @@ class InstructionSet { JtlCompiler::CompileError::ErrorCode TranscodeInstruction( const std::string& name, - const ListValue& arguments, + const base::ListValue& arguments, bool ends_sentence, const jtl::Hasher& hasher, ByteCodeWriter* target) const { @@ -224,7 +224,7 @@ bool JtlCompiler::Compile(const std::string& source_code, JtlParser parser(compacted_source_code, newline_indices); while (!parser.HasFinished()) { std::string operation_name; - ListValue arguments; + base::ListValue arguments; bool ends_sentence = false; if (!parser.ParseNextOperation( &operation_name, &arguments, &ends_sentence)) { diff --git a/chrome/tools/profile_reset/jtl_parser.cc b/chrome/tools/profile_reset/jtl_parser.cc index 9c9bdbb..c1d9c15 100644 --- a/chrome/tools/profile_reset/jtl_parser.cc +++ b/chrome/tools/profile_reset/jtl_parser.cc @@ -147,7 +147,7 @@ bool JtlParser::ParseNextOperation(std::string* name, new base::FundamentalValue(boolean_value == kTrueKeyword)); } else { // |string_value| might be empty for an empty string - argument_list->Append(new StringValue(string_value)); + argument_list->Append(new base::StringValue(string_value)); } } return true; |