Commit dc2b73b0 authored by benwells@chromium.org's avatar benwells@chromium.org

Remove unneeded flag for platform app tests.

The tests that use this code path no longer need the experimental API permission. For better testing this flag should be removed.

BUG=None


Review URL: https://chromiumcodereview.appspot.com/11147017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@162379 0039d316-1c4b-4281-b951-d872f2087c98
parent 6bc06c0d
...@@ -23,8 +23,8 @@ namespace utils = extension_function_test_utils; ...@@ -23,8 +23,8 @@ namespace utils = extension_function_test_utils;
namespace extensions { namespace extensions {
void PlatformAppBrowserTest::SetUpCommandLine(CommandLine* command_line) { void PlatformAppBrowserTest::SetUpCommandLine(CommandLine* command_line) {
// Skips ExtensionApiTest::SetUpCommandLine.
ExtensionBrowserTest::SetUpCommandLine(command_line); ExtensionBrowserTest::SetUpCommandLine(command_line);
command_line->AppendSwitch(switches::kEnableExperimentalExtensionApis);
// Make event pages get suspended quicker. // Make event pages get suspended quicker.
command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "1"); command_line->AppendSwitchASCII(switches::kEventPageIdleTime, "1");
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
} }
}, },
"permissions": [ "permissions": [
"experimental",
"fileSystem" "fileSystem"
] ]
} }
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
} }
}, },
"permissions": [ "permissions": [
"experimental",
{ {
"fileSystem": [] "fileSystem": []
} }
......
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
} }
}, },
"permissions": [ "permissions": [
"experimental",
{ {
"fileSystem": ["write"] "fileSystem": ["write"]
} }
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
"name" : "Platform App Context Menus Test Extension", "name" : "Platform App Context Menus Test Extension",
"version" : "0.1", "version" : "0.1",
"permissions": [ "permissions": [
"experimental",
"contextMenus" "contextMenus"
], ],
"app": { "app": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment