Chromium Code Reviews| Index: chrome/browser/ui/app_list/app_list_test_util.h |
| diff --git a/chrome/browser/ui/app_list/app_list_test_util.h b/chrome/browser/ui/app_list/app_list_test_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ac790d8ed5b52f5d2d2f1d1a5bc35185fd1562e1 |
| --- /dev/null |
| +++ b/chrome/browser/ui/app_list/app_list_test_util.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#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
|
| +#define CHROME_BROWSER_UI_APP_LIST_APP_LIST_TEST_UTIL_H_ |
| + |
| +#include "chrome/browser/extensions/extension_service_unittest.h" |
| + |
| +// Base class for app list unit tests that use the "app_list" test profile. |
| +class AppListTestBase : public ExtensionServiceTestBase { |
| + public: |
| + static const char kHostedAppId[]; |
| + static const char kPackagedApp1Id[]; |
| + static const char kPackagedApp2Id[]; |
| + |
| + AppListTestBase(); |
| + virtual ~AppListTestBase(); |
| + |
| + virtual void SetUp() OVERRIDE; |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_TEST_UTIL_H_ |