1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef EXTENSIONS_SHELL_TEST_SHELL_TEST_H_
6 #define EXTENSIONS_SHELL_TEST_SHELL_TEST_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "content/public/test/browser_test.h"
10 #include "content/public/test/browser_test_base.h"
20 namespace extensions
{
22 class ShellExtensionSystem
;
24 // Base class for app shell browser tests.
25 class AppShellTest
: public content::BrowserTestBase
{
28 virtual ~AppShellTest();
30 // content::BrowserTestBase implementation.
31 virtual void SetUp() OVERRIDE
;
32 virtual void SetUpOnMainThread() OVERRIDE
;
33 virtual void RunTestOnMainThreadLoop() OVERRIDE
;
35 // Loads an unpacked application from a directory using |extension_system_|
36 // and attempts to launch it. Returns true on success.
37 bool LoadAndLaunchApp(const base::FilePath
& app_dir
);
39 content::BrowserContext
* browser_context() { return browser_context_
; }
42 content::BrowserContext
* browser_context_
;
43 ShellExtensionSystem
* extension_system_
;
46 } // namespace extensions
48 #endif // EXTENSIONS_SHELL_TEST_SHELL_TEST_H_