diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 18:46:49 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 18:46:49 +0000 |
commit | 023b3d130872a690ee2971d5ac7f3c4bb192626d (patch) | |
tree | ddb8b8e0fd2cec019b9865c481365ad25c87d25f /chrome/browser/extensions/api/tabs/tabs_event_router.h | |
parent | 7e5b5b0e5ff9bc17ebc0ef09db5a31bb238b834c (diff) | |
download | chromium_src-023b3d130872a690ee2971d5ac7f3c4bb192626d.zip chromium_src-023b3d130872a690ee2971d5ac7f3c4bb192626d.tar.gz chromium_src-023b3d130872a690ee2971d5ac7f3c4bb192626d.tar.bz2 |
Update some uses of Value in chrome/browser to use the base:: namespace.
BUG=88666
TEST=no change
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/120783002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/api/tabs/tabs_event_router.h')
-rw-r--r-- | chrome/browser/extensions/api/tabs/tabs_event_router.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/browser/extensions/api/tabs/tabs_event_router.h b/chrome/browser/extensions/api/tabs/tabs_event_router.h index b7f911c..461786a 100644 --- a/chrome/browser/extensions/api/tabs/tabs_event_router.h +++ b/chrome/browser/extensions/api/tabs/tabs_event_router.h @@ -101,8 +101,9 @@ class TabsEventRouter : public TabStripModelObserver, // Packages |changed_properties| as a tab updated event for the tab |contents| // and dispatches the event to the extension. - void DispatchTabUpdatedEvent(content::WebContents* contents, - scoped_ptr<DictionaryValue> changed_properties); + void DispatchTabUpdatedEvent( + content::WebContents* contents, + scoped_ptr<base::DictionaryValue> changed_properties); // Register ourselves to receive the various notifications we are interested // in for a browser. @@ -135,12 +136,13 @@ class TabsEventRouter : public TabStripModelObserver, // processing of TabChangedAt(). This method will "hold" a state-change // to "loading", until the DidNavigate() method which should always follow // it. Returns NULL if no updates should be sent. - DictionaryValue* UpdateLoadState(const content::WebContents* contents); + base::DictionaryValue* UpdateLoadState( + const content::WebContents* contents); // Indicates that a tab load has resulted in a navigation and the // destination url is available for inspection. Returns NULL if no updates // should be sent. - DictionaryValue* DidNavigate(const content::WebContents* contents); + base::DictionaryValue* DidNavigate(const content::WebContents* contents); private: // Whether we are waiting to fire the 'complete' status change. This will |