diff options
Diffstat (limited to 'chrome/browser/profile_resetter/jtl_interpreter.h')
-rw-r--r-- | chrome/browser/profile_resetter/jtl_interpreter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/profile_resetter/jtl_interpreter.h b/chrome/browser/profile_resetter/jtl_interpreter.h index c39c416..a87be69 100644 --- a/chrome/browser/profile_resetter/jtl_interpreter.h +++ b/chrome/browser/profile_resetter/jtl_interpreter.h @@ -29,13 +29,13 @@ class JtlInterpreter { // |input| is a dictionary on which the program is evaluated. JtlInterpreter(const std::string& hasher_seed, const std::string& program, - const DictionaryValue* input); + const base::DictionaryValue* input); ~JtlInterpreter(); void Execute(); Result result() const { return result_; } - const DictionaryValue* working_memory() const { + const base::DictionaryValue* working_memory() const { return working_memory_.get(); } bool GetOutputBoolean(const std::string& unhashed_key, bool* output) const; @@ -46,9 +46,9 @@ class JtlInterpreter { // Input. std::string hasher_seed_; std::string program_; - const DictionaryValue* input_; + const base::DictionaryValue* input_; // Output. - scoped_ptr<DictionaryValue> working_memory_; + scoped_ptr<base::DictionaryValue> working_memory_; Result result_; DISALLOW_COPY_AND_ASSIGN(JtlInterpreter); |