| Index: chrome/browser/extensions/api/identity/identity_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/identity/identity_apitest.cc b/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| index 334c8848ed44d0a140ea612ea8b5e70c1d83ce2b..3c745f6cfc90fe225a7d650177b53f57ff6b4ab7 100644
|
| --- a/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| +++ b/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| @@ -28,15 +28,13 @@ class IdentityInterceptor : public OAuth2MintTokenFlow::InterceptorForTests {
|
|
|
| } // namespace
|
|
|
| -class ExperimentalApiTest : public ExtensionApiTest {
|
| - public:
|
| - void SetUpCommandLine(CommandLine* command_line) {
|
| - ExtensionApiTest::SetUpCommandLine(command_line);
|
| - command_line->AppendSwitch(switches::kEnablePlatformApps);
|
| - command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
|
| - }
|
| +class ExperimentalApiTest : public PlatformAppApiTest {
|
| };
|
|
|
| +IN_PROC_BROWSER_TEST_F(ExperimentalApiTest, VerifyPermissions) {
|
| + VerifyPermissions(test_data_dir_.AppendASCII("identity"));
|
| +}
|
| +
|
| IN_PROC_BROWSER_TEST_F(ExperimentalApiTest, Identity) {
|
| IdentityInterceptor interceptor;
|
| OAuth2MintTokenFlow::SetInterceptorForTests(&interceptor);
|
|
|