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

Unified Diff: chrome/browser/custom_handlers/protocol_handler_registry.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/custom_handlers/protocol_handler_registry.h
diff --git a/chrome/browser/custom_handlers/protocol_handler_registry.h b/chrome/browser/custom_handlers/protocol_handler_registry.h
index fd9e3852b97bd090d22d571feea46f1842327f8d..f43183383635fb9fe3947a5e973227d70febc198 100644
--- a/chrome/browser/custom_handlers/protocol_handler_registry.h
+++ b/chrome/browser/custom_handlers/protocol_handler_registry.h
@@ -277,11 +277,11 @@ class ProtocolHandlerRegistry : public BrowserContextKeyedService {
// Returns a JSON list of protocol handlers. The caller is responsible for
// deleting this Value.
- Value* EncodeRegisteredHandlers();
+ base::Value* EncodeRegisteredHandlers();
// Returns a JSON list of ignored protocol handlers. The caller is
// responsible for deleting this Value.
- Value* EncodeIgnoredHandlers();
+ base::Value* EncodeIgnoredHandlers();
// Sends a notification of the given type to the NotificationService.
void NotifyChanged();
@@ -291,7 +291,7 @@ class ProtocolHandlerRegistry : public BrowserContextKeyedService {
// Get the DictionaryValues stored under the given pref name that are valid
// ProtocolHandler values.
- std::vector<const DictionaryValue*> GetHandlersFromPref(
+ std::vector<const base::DictionaryValue*> GetHandlersFromPref(
const char* pref_name) const;
// Ignores future requests to register the given protocol handler.

Powered by Google App Engine
This is Rietveld 408576698