// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "build/build_config.h" #include "chrome/browser/extensions/extension_apitest.h" #include "chrome/common/chrome_paths.h" #include "chrome/test/base/ui_test_utils.h" #include "content/public/test/browser_test.h" #include "extensions/test/result_catcher.h" #include "net/test/embedded_test_server/embedded_test_server.h" #include "url/gurl.h" namespace extensions { // Tests that we throw errors when you try using extension APIs that aren't // supported in content scripts. IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Stubs) { … } // Tests that all API features that are available to a platform app actually // can be used in an app. For example, this test will fail if a developer adds // an API feature without providing a schema. http://crbug.com/369318 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, StubsApp) { … } } // namespace extensions