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

Unified Diff: content/test/test_content_client_initializer.h

Issue 10191010: Re-implement the screensaver to use WebView instead of ExtensionDialogHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ut fix. Created 8 years, 8 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
« no previous file with comments | « content/test/content_test_suite.cc ('k') | content/test/test_content_client_initializer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_content_client_initializer.h
diff --git a/content/test/test_content_client_initializer.h b/content/test/test_content_client_initializer.h
new file mode 100644
index 0000000000000000000000000000000000000000..fbbdd80b7b620406edfe8ff17cbe154253286e44
--- /dev/null
+++ b/content/test/test_content_client_initializer.h
@@ -0,0 +1,37 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_TEST_TEST_CONTENT_CLIENT_INITIALIZER_
+#define CONTENT_TEST_TEST_CONTENT_CLIENT_INITIALIZER_
+#pragma once
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+
+class NotificationServiceImpl;
+
+namespace content {
+
+class ContentClient;
+class ContentBrowserClient;
+
+// Initializes various objects needed to run unit tests that use content::
+// objects. Currently this includes setting up the notification service,
+// creating and setting the content client and the content browser client.
+class TestContentClientInitializer {
+ public:
+ TestContentClientInitializer();
+ ~TestContentClientInitializer();
+
+ private:
+ scoped_ptr<NotificationServiceImpl> notification_service_;
+ scoped_ptr<content::ContentClient> content_client_;
+ scoped_ptr<content::ContentBrowserClient> content_browser_client_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer);
+};
+
+} // namespace content
+
+#endif // CONTENT_TEST_TEST_CONTENT_CLIENT_INITIALIZER_
« no previous file with comments | « content/test/content_test_suite.cc ('k') | content/test/test_content_client_initializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698