summaryrefslogtreecommitdiffstats
path: root/chrome/browser/background/background_contents_service_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/background/background_contents_service_unittest.cc')
-rw-r--r--chrome/browser/background/background_contents_service_unittest.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/background/background_contents_service_unittest.cc b/chrome/browser/background/background_contents_service_unittest.cc
index c62b64e..0daedf7 100644
--- a/chrome/browser/background/background_contents_service_unittest.cc
+++ b/chrome/browser/background/background_contents_service_unittest.cc
@@ -71,24 +71,24 @@ class MockBackgroundContents : public BackgroundContents {
url_ = url;
NotificationService::current()->Notify(
chrome::NOTIFICATION_BACKGROUND_CONTENTS_NAVIGATED,
- Source<Profile>(profile_),
- Details<BackgroundContents>(this));
+ content::Source<Profile>(profile_),
+ content::Details<BackgroundContents>(this));
}
virtual const GURL& GetURL() const { return url_; }
void MockClose(Profile* profile) {
NotificationService::current()->Notify(
chrome::NOTIFICATION_BACKGROUND_CONTENTS_CLOSED,
- Source<Profile>(profile),
- Details<BackgroundContents>(this));
+ content::Source<Profile>(profile),
+ content::Details<BackgroundContents>(this));
delete this;
}
~MockBackgroundContents() {
NotificationService::current()->Notify(
chrome::NOTIFICATION_BACKGROUND_CONTENTS_DELETED,
- Source<Profile>(profile_),
- Details<BackgroundContents>(this));
+ content::Source<Profile>(profile_),
+ content::Details<BackgroundContents>(this));
}
const string16& appid() { return appid_; }