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

Unified Diff: chrome/browser/enumerate_modules_model_win.cc

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months 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/enumerate_modules_model_win.cc
===================================================================
--- chrome/browser/enumerate_modules_model_win.cc (revision 91968)
+++ chrome/browser/enumerate_modules_model_win.cc (working copy)
@@ -24,6 +24,7 @@
#include "crypto/sha2.h"
#include "chrome/browser/net/service_providers_win.h"
#include "chrome/common/chrome_constants.h"
+#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/chrome_switches.h"
#include "content/common/notification_service.h"
#include "grit/generated_resources.h"
@@ -770,7 +771,7 @@
if (!conflict_notification_acknowledged_) {
conflict_notification_acknowledged_ = true;
NotificationService::current()->Notify(
- NotificationType::MODULE_INCOMPATIBILITY_BADGE_CHANGE,
+ chrome::NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE,
Source<EnumerateModulesModel>(this),
NotificationService::NoDetails());
}
@@ -925,7 +926,7 @@
return;
NotificationService::current()->Notify(
- NotificationType::MODULE_LIST_ENUMERATED,
+ chrome::NOTIFICATION_MODULE_LIST_ENUMERATED,
Source<EnumerateModulesModel>(this),
NotificationService::NoDetails());
@@ -937,7 +938,7 @@
return;
NotificationService::current()->Notify(
- NotificationType::MODULE_INCOMPATIBILITY_BADGE_CHANGE,
+ chrome::NOTIFICATION_MODULE_INCOMPATIBILITY_BADGE_CHANGE,
Source<EnumerateModulesModel>(this),
NotificationService::NoDetails());
}
« no previous file with comments | « chrome/browser/download/save_page_browsertest.cc ('k') | chrome/browser/extensions/browser_action_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698