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

Unified Diff: chrome/browser/extensions/app_notification_test_util.h

Issue 10830036: Moved the AppNotification system into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 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/extensions/app_notification_test_util.h
diff --git a/chrome/browser/extensions/app_notification_test_util.h b/chrome/browser/extensions/app_notification_test_util.h
index 491e222937d740516b77c518c7f24e14fbda59e1..1238ee62c681ca296dfb3ea4f3b25a0fe8809db7 100644
--- a/chrome/browser/extensions/app_notification_test_util.h
+++ b/chrome/browser/extensions/app_notification_test_util.h
@@ -7,25 +7,27 @@
#include "chrome/browser/extensions/app_notification.h"
+namespace extensions {
class AppNotificationManager;
+}
namespace app_notification_test_util {
// Does a deep equality check of two AppNotificationList's, adding a gtest
// failure and logging at the first difference found.
-void ExpectListsEqual(const AppNotificationList& one,
- const AppNotificationList& two);
+void ExpectListsEqual(const extensions::AppNotificationList& one,
+ const extensions::AppNotificationList& two);
// Helper for inserting |count| dummy notifications with |prefix| in their
// title and body into |list|.
-void AddNotifications(AppNotificationList* list,
+void AddNotifications(extensions::AppNotificationList* list,
const std::string& extension_id,
int count,
const std::string& prefix);
// Adds a copy of each item in |list| to |manager|.
-bool AddCopiesFromList(AppNotificationManager* manager,
- const AppNotificationList& list);
+bool AddCopiesFromList(extensions::AppNotificationManager* manager,
+ const extensions::AppNotificationList& list);
} // namespace app_notification_test_util

Powered by Google App Engine
This is Rietveld 408576698