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

Unified Diff: content/public/browser/notification_service.h

Issue 8547003: content: Remove unnecessary content:: from Notification classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « content/public/browser/notification_registrar.cc ('k') | content/public/browser/notification_types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/notification_service.h
diff --git a/content/public/browser/notification_service.h b/content/public/browser/notification_service.h
index 8a55b0e262509fc75930ebf038b7c625b3ba41c9..006373bab79db3f363f5cdd4bbbb8ba708712a02 100644
--- a/content/public/browser/notification_service.h
+++ b/content/public/browser/notification_service.h
@@ -6,8 +6,8 @@
// happen in various parts of the application, and allows users to register
// observers for various classes of events that they're interested in.
-#ifndef CONTENT_PUBLIC_NOTIFICATION_SERVICE_H_
-#define CONTENT_PUBLIC_NOTIFICATION_SERVICE_H_
+#ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_SERVICE_H_
+#define CONTENT_PUBLIC_BROWSER_NOTIFICATION_SERVICE_H_
#pragma once
#include "content/common/content_export.h"
@@ -56,9 +56,9 @@ class CONTENT_EXPORT NotificationService {
// Returns a NotificationDetails object that represents a lack of details
// associated with a notification. (This is effectively a null pointer.)
- static Details<void> NoDetails() { return content::Details<void>(NULL); }
+ static Details<void> NoDetails() { return Details<void>(NULL); }
};
} // namespace content
-#endif // CONTENT_COMMON_NOTIFICATION_SERVICE_H_
+#endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_SERVICE_H_
« no previous file with comments | « content/public/browser/notification_registrar.cc ('k') | content/public/browser/notification_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698