Index: chrome/browser/extensions/api/instance_id/instance_id_apitest.cc |
diff --git a/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc b/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc |
index 63a4674329d9a3318a185764ad97694bff63dae5..26fcb689540cd658827e00de162fe0a396c4fbed 100644 |
--- a/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc |
+++ b/chrome/browser/extensions/api/instance_id/instance_id_apitest.cc |
@@ -23,18 +23,6 @@ using extensions::ResultCatcher; |
namespace extensions { |
-namespace { |
- |
-std::unique_ptr<KeyedService> BuildFakeGCMProfileService( |
- content::BrowserContext* context) { |
- std::unique_ptr<gcm::FakeGCMProfileService> service( |
- new gcm::FakeGCMProfileService(Profile::FromBrowserContext(context))); |
- service->SetDriverForTesting(new instance_id::FakeGCMDriverForInstanceID()); |
- return std::move(service); |
-} |
- |
-} // namespace |
- |
class InstanceIDApiTest : public ExtensionApiTest { |
public: |
InstanceIDApiTest(); |
@@ -51,7 +39,7 @@ InstanceIDApiTest::InstanceIDApiTest() { |
void InstanceIDApiTest::SetUpOnMainThread() { |
gcm::GCMProfileServiceFactory::GetInstance()->SetTestingFactory( |
- browser()->profile(), &BuildFakeGCMProfileService); |
+ browser()->profile(), &gcm::FakeGCMProfileService::Build); |
ExtensionApiTest::SetUpOnMainThread(); |
} |