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

Unified Diff: chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc

Issue 2052013002: Adding ChromeLauncherController interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome_launcher_smaller_api
Patch Set: Rebase Created 4 years, 6 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
« no previous file with comments | « chrome/browser/ui/ash/launcher/launcher_context_menu.cc ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
diff --git a/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc b/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
index 9d67fb81fc1e9b5eddff8d355e0f216da4e62eea..d1c4cdba0da83d6ee1272487ef8ba303c046eac9 100644
--- a/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
+++ b/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
@@ -17,7 +17,7 @@
#include "chrome/browser/ui/app_list/arc/arc_app_test.h"
#include "chrome/browser/ui/ash/launcher/arc_launcher_context_menu.h"
#include "chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controller.h"
-#include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h"
+#include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl.h"
#include "chrome/browser/ui/ash/launcher/desktop_shell_launcher_context_menu.h"
#include "chrome/browser/ui/ash/launcher/extension_launcher_context_menu.h"
#include "chrome/test/base/testing_profile.h"
@@ -36,7 +36,8 @@ class LauncherContextMenuTest : public ash::test::AshTestBase {
void SetUp() override {
arc_test_.SetUp(profile_.get());
ash::test::AshTestBase::SetUp();
- controller_.reset(new ChromeLauncherController(profile(), &shelf_model_));
+ controller_.reset(
+ new ChromeLauncherControllerImpl(profile(), &shelf_model_));
}
void TearDown() override {
@@ -68,12 +69,12 @@ class LauncherContextMenuTest : public ash::test::AshTestBase {
Profile* profile() { return profile_.get(); }
- ChromeLauncherController* controller() { return controller_.get(); }
+ ChromeLauncherControllerImpl* controller() { return controller_.get(); }
private:
std::unique_ptr<TestingProfile> profile_;
ash::ShelfModel shelf_model_;
- std::unique_ptr<ChromeLauncherController> controller_;
+ std::unique_ptr<ChromeLauncherControllerImpl> controller_;
ArcAppTest arc_test_;
DISALLOW_COPY_AND_ASSIGN(LauncherContextMenuTest);
« no previous file with comments | « chrome/browser/ui/ash/launcher/launcher_context_menu.cc ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698