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

Unified Diff: extensions/browser/event_router_unittest.cc

Issue 435703002: Move tests from Chrome's unit_tests to extensions_unittests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (browser-unit-tests) size_t to int Created 6 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: extensions/browser/event_router_unittest.cc
diff --git a/extensions/browser/event_router_unittest.cc b/extensions/browser/event_router_unittest.cc
index aa068ced40831101d40cf1eca8d37c063c45b6d9..b06388078b2a72d0255ea66f742434a38421f1ad 100644
--- a/extensions/browser/event_router_unittest.cc
+++ b/extensions/browser/event_router_unittest.cc
@@ -10,6 +10,7 @@
#include "base/compiler_specific.h"
#include "base/memory/scoped_ptr.h"
#include "base/values.h"
+#include "content/public/browser/notification_service.h"
#include "extensions/browser/event_listener_map.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -81,9 +82,18 @@ scoped_ptr<EventListener> CreateEventListenerForURL(
} // namespace
class EventRouterTest : public testing::Test {
+ public:
+ EventRouterTest()
+ : notification_service_(content::NotificationService::Create()) {}
+
protected:
// Tests adding and removing observers from EventRouter.
void RunEventRouterObserverTest(const EventListenerConstructor& constructor);
+
+ private:
+ scoped_ptr<content::NotificationService> notification_service_;
+
+ DISALLOW_COPY_AND_ASSIGN(EventRouterTest);
};
TEST_F(EventRouterTest, GetBaseEventName) {
« no previous file with comments | « chrome/test/data/value_store_db/MANIFEST-000004 ('k') | extensions/browser/value_store/value_store_frontend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698