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

Unified Diff: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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
Index: chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
diff --git a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
index 60dc3d7d44b90e69f87242ff6bd2d11ebafb9ba7..5ba49240a176e19e3a06434228072e7a4f66a196 100644
--- a/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
+++ b/chrome/browser/chromeos/input_method/component_extension_ime_manager_impl.h
@@ -54,20 +54,20 @@ class ComponentExtensionIMEManagerImpl
// Reads manifest.json file in |file_path|. This function must be called on
// file thread.
- static scoped_ptr<DictionaryValue> GetManifest(
+ static scoped_ptr<base::DictionaryValue> GetManifest(
const base::FilePath& file_path);
// Reads extension information: description, option page. This function
// returns true on success, otherwise returns false. This function must be
// called on file thread.
- static bool ReadExtensionInfo(const DictionaryValue& manifest,
+ static bool ReadExtensionInfo(const base::DictionaryValue& manifest,
const std::string& extension_id,
ComponentExtensionIME* out);
// Reads each engine component in |dict|. |dict| is given by GetList with
// kInputComponents key from manifest. This function returns true on success,
// otherwise retrun false. This function must be called on FILE thread.
- static bool ReadEngineComponent(const DictionaryValue& dict,
+ static bool ReadEngineComponent(const base::DictionaryValue& dict,
ComponentExtensionEngine* out);
// True if initialized.

Powered by Google App Engine
This is Rietveld 408576698