Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_TEST_UTIL_H_ | |
|
benwells
2014/05/19 02:06:53
Is this part of your change?
tmdiep
2014/05/19 02:51:16
Yes. I added a test for ephemeral apps to extensio
| |
| 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_TEST_UTIL_H_ | |
| 7 | |
| 8 #include "chrome/browser/extensions/extension_service_unittest.h" | |
| 9 | |
| 10 // Base class for app list unit tests that use the "app_list" test profile. | |
| 11 class AppListTestBase : public ExtensionServiceTestBase { | |
| 12 public: | |
| 13 static const char kHostedAppId[]; | |
| 14 static const char kPackagedApp1Id[]; | |
| 15 static const char kPackagedApp2Id[]; | |
| 16 | |
| 17 AppListTestBase(); | |
| 18 virtual ~AppListTestBase(); | |
| 19 | |
| 20 virtual void SetUp() OVERRIDE; | |
| 21 }; | |
| 22 | |
| 23 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_TEST_UTIL_H_ | |
| OLD | NEW |