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

Unified Diff: mojo/service_manager/service_manager.h

Issue 187183002: Add creation of ServiceManager to Content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Check USE_MOJO for Windows bots Created 6 years, 9 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: mojo/service_manager/service_manager.h
diff --git a/mojo/service_manager/service_manager.h b/mojo/service_manager/service_manager.h
index c05e1770209c849354a80eb4fcc0ea26a763311a..eb7b934dbcac791af394d3527ecc0b5f1dfd2077 100644
--- a/mojo/service_manager/service_manager.h
+++ b/mojo/service_manager/service_manager.h
@@ -9,20 +9,30 @@
#include "base/basictypes.h"
#include "base/callback.h"
+#include "base/gtest_prod_util.h"
#include "mojo/public/shell/shell.mojom.h"
+#include "mojo/service_manager/service_manager_export.h"
#include "url/gurl.h"
+namespace content {
+ class MojoTest;
+}
+
namespace mojo {
class ServiceLoader;
-class ServiceManager {
+class MOJO_SERVICE_MANAGER_EXPORT ServiceManager {
public:
// API for testing.
- class TestAPI {
+ class MOJO_SERVICE_MANAGER_EXPORT TestAPI {
private:
friend class ServiceManagerTest;
+ friend class content::MojoTest;
+
explicit TestAPI(ServiceManager* manager) : manager_(manager) {}
+ // Returns true if the shared instance has been created.
+ MOJO_SERVICE_MANAGER_EXPORT static bool HasCreatedInstance();
// Returns true if there is a ServiceFactory for this URL.
bool HasFactoryForURL(const GURL& url) const;

Powered by Google App Engine
This is Rietveld 408576698