Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4531)

Unified Diff: chrome/browser/ui/app_list/app_list_test_util.cc

Issue 282103003: Moved IS_EPHEMERAL flag to extension prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor refactoring. Added comments. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/app_list/app_list_test_util.cc
diff --git a/chrome/browser/ui/app_list/app_list_test_util.cc b/chrome/browser/ui/app_list/app_list_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4f92c18c03f477dce3ec40c7a4f4e8249241455b
--- /dev/null
+++ b/chrome/browser/ui/app_list/app_list_test_util.cc
@@ -0,0 +1,43 @@
+// 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.
+
+#include "chrome/browser/ui/app_list/app_list_test_util.h"
+
+#include "base/files/file_path.h"
+#include "chrome/common/chrome_constants.h"
+#include "extensions/common/extension_set.h"
+
+const char AppListTestBase::kHostedAppId[] =
+ "dceacbkfkmllgmjmbhgkpjegnodmildf";
+const char AppListTestBase::kPackagedApp1Id[] =
+ "emfkafnhnpcmabnnkckkchdilgeoekbo";
+const char AppListTestBase::kPackagedApp2Id[] =
+ "jlklkagmeajbjiobondfhiekepofmljl";
+
+AppListTestBase::AppListTestBase() {}
+
+AppListTestBase::~AppListTestBase() {}
+
+void AppListTestBase::SetUp() {
+ ExtensionServiceTestBase::SetUp();
+
+ // Load "app_list" extensions test profile.
+ // The test profile has 5 extensions:
+ // - 1 dummy extension (which should not be visible in the launcher)
+ // - 2 packaged extension apps
+ // - 1 hosted extension app
+ // - 1 ephemeral app (which should not be visible in the launcher)
+ base::FilePath source_install_dir = data_dir_
+ .AppendASCII("app_list")
+ .AppendASCII("Extensions");
+ base::FilePath pref_path = source_install_dir
+ .DirName()
+ .Append(chrome::kPreferencesFilename);
+ InitializeInstalledExtensionService(pref_path, source_install_dir);
+ service_->Init();
+
+ // There should be 5 extensions in the test profile.
+ const extensions::ExtensionSet* extensions = service_->extensions();
+ ASSERT_EQ(static_cast<size_t>(5), extensions->size());
+}

Powered by Google App Engine
This is Rietveld 408576698