OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/app_list/app_list_test_util.h" | 5 #include "chrome/browser/ui/app_list/app_list_test_util.h" |
6 | 6 |
7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/threading/sequenced_worker_pool.h" |
8 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
9 #include "chrome/common/chrome_constants.h" | 10 #include "chrome/common/chrome_constants.h" |
10 #include "extensions/browser/extension_registry.h" | 11 #include "extensions/browser/extension_registry.h" |
11 #include "extensions/common/extension_set.h" | 12 #include "extensions/common/extension_set.h" |
12 | 13 |
13 const char AppListTestBase::kHostedAppId[] = | 14 const char AppListTestBase::kHostedAppId[] = |
14 "dceacbkfkmllgmjmbhgkpjegnodmildf"; | 15 "dceacbkfkmllgmjmbhgkpjegnodmildf"; |
15 const char AppListTestBase::kPackagedApp1Id[] = | 16 const char AppListTestBase::kPackagedApp1Id[] = |
16 "emfkafnhnpcmabnnkckkchdilgeoekbo"; | 17 "emfkafnhnpcmabnnkckkchdilgeoekbo"; |
17 const char AppListTestBase::kPackagedApp2Id[] = | 18 const char AppListTestBase::kPackagedApp2Id[] = |
(...skipping 23 matching lines...) Expand all Loading... |
41 service_->SetFileTaskRunnerForTesting( | 42 service_->SetFileTaskRunnerForTesting( |
42 content::BrowserThread::GetBlockingPool() | 43 content::BrowserThread::GetBlockingPool() |
43 ->GetSequencedTaskRunnerWithShutdownBehavior( | 44 ->GetSequencedTaskRunnerWithShutdownBehavior( |
44 content::BrowserThread::GetBlockingPool()->GetNamedSequenceToken( | 45 content::BrowserThread::GetBlockingPool()->GetNamedSequenceToken( |
45 "ext_install-"), | 46 "ext_install-"), |
46 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); | 47 base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)); |
47 | 48 |
48 // There should be 4 extensions in the test profile. | 49 // There should be 4 extensions in the test profile. |
49 ASSERT_EQ(4U, registry()->enabled_extensions().size()); | 50 ASSERT_EQ(4U, registry()->enabled_extensions().size()); |
50 } | 51 } |
OLD | NEW |