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 |