summaryrefslogtreecommitdiffstats
path: root/chrome/browser/app_controller_mac.mm
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-10 17:53:32 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-10 17:53:32 +0000
commit14fb7d3274f0d1c0617dbbfe6dbb43800a031d4f (patch)
tree13dc3b2e1c66967c23bcf28d11a6f04df114e5b5 /chrome/browser/app_controller_mac.mm
parent95ca629d155ff8cca8c7ed5528487629bd3410ac (diff)
downloadchromium_src-14fb7d3274f0d1c0617dbbfe6dbb43800a031d4f.zip
chromium_src-14fb7d3274f0d1c0617dbbfe6dbb43800a031d4f.tar.gz
chromium_src-14fb7d3274f0d1c0617dbbfe6dbb43800a031d4f.tar.bz2
Fix for build failures on mac and Linux
BUG=none TEST=it compiles TBR=joi Review URL: http://codereview.chromium.org/7327032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/app_controller_mac.mm')
-rw-r--r--chrome/browser/app_controller_mac.mm3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/app_controller_mac.mm b/chrome/browser/app_controller_mac.mm
index db0a2d1..f1d108c 100644
--- a/chrome/browser/app_controller_mac.mm
+++ b/chrome/browser/app_controller_mac.mm
@@ -44,6 +44,7 @@
#import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h"
#import "chrome/browser/ui/cocoa/tabs/tab_window_controller.h"
#include "chrome/browser/ui/cocoa/task_manager_mac.h"
+#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/app_mode_common_mac.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome/common/chrome_switches.h"
@@ -550,7 +551,7 @@ void RecordLastRunAppBundlePath() {
// This is called after profiles have been loaded and preferences registered.
// It is safe to access the default profile here.
- (void)applicationDidBecomeActive:(NSNotification*)notify {
- NotificationService::current()->Notify(chrome::NOTIFICATION_APP_ACTIVATED,
+ NotificationService::current()->Notify(content::NOTIFICATION_APP_ACTIVATED,
NotificationService::AllSources(),
NotificationService::NoDetails());
}