diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 20:29:27 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-18 20:29:27 +0000 |
commit | a371b4bd10e871e13efc4a2c53b3e26b8e8d9ef0 (patch) | |
tree | f551a98ccf6e9b91cebc5c35fc25b1dc13174413 /chrome/common/custom_handlers | |
parent | 59e69e745ba3fa290ff3c50e65c3db03ee9dde6b (diff) | |
download | chromium_src-a371b4bd10e871e13efc4a2c53b3e26b8e8d9ef0.zip chromium_src-a371b4bd10e871e13efc4a2c53b3e26b8e8d9ef0.tar.gz chromium_src-a371b4bd10e871e13efc4a2c53b3e26b8e8d9ef0.tar.bz2 |
Make chrome/common and chrome/renderer use base namespace for Value.
R=avi@chromium.org
Review URL: https://codereview.chromium.org/16923013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207076 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/custom_handlers')
-rw-r--r-- | chrome/common/custom_handlers/protocol_handler.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/common/custom_handlers/protocol_handler.h b/chrome/common/custom_handlers/protocol_handler.h index dd26b48..181126c 100644 --- a/chrome/common/custom_handlers/protocol_handler.h +++ b/chrome/common/custom_handlers/protocol_handler.h @@ -21,11 +21,12 @@ class ProtocolHandler { // Creates a ProtocolHandler with fields from the dictionary. Returns an // empty ProtocolHandler if the input is invalid. - static ProtocolHandler CreateProtocolHandler(const DictionaryValue* value); + static ProtocolHandler CreateProtocolHandler( + const base::DictionaryValue* value); // Returns true if the dictionary value has all the necessary fields to // define a ProtocolHandler. - static bool IsValidDict(const DictionaryValue* value); + static bool IsValidDict(const base::DictionaryValue* value); // Returns true if this handler's url has the same origin as the given one. bool IsSameOrigin(const ProtocolHandler& handler) const; @@ -43,7 +44,7 @@ class ProtocolHandler { // Encodes this protocol handler as a DictionaryValue. The caller is // responsible for deleting the returned value. - DictionaryValue* Encode() const; + base::DictionaryValue* Encode() const; const std::string& protocol() const { return protocol_; } const GURL& url() const { return url_;} |