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

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

Issue 71653003: ash: Rename LauncherModel to ShelfModel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: chrome changes Created 7 years, 1 month 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/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 96bb85189f65d701efbe4d31dcab63e51361b4fa..f5d906e26aeeaf03e7911871c6e2a7743576742b 100644
--- a/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
+++ b/chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/ui/ash/launcher/launcher_context_menu.h"
#include "ash/launcher/launcher.h"
-#include "ash/launcher/launcher_model.h"
#include "ash/launcher/launcher_types.h"
+#include "ash/shelf/shelf_model.h"
#include "ash/test/ash_test_base.h"
#include "base/prefs/pref_service.h"
#include "chrome/app/chrome_command_ids.h"
@@ -18,7 +18,7 @@
class TestChromeLauncherController : public ChromeLauncherController {
public:
- TestChromeLauncherController(Profile* profile, ash::LauncherModel* model)
+ TestChromeLauncherController(Profile* profile, ash::ShelfModel* model)
: ChromeLauncherController(profile, model) {}
virtual bool IsLoggedInAsGuest() OVERRIDE {
return false;
@@ -40,7 +40,7 @@ class LauncherContextMenuTest : public ash::test::AshTestBase {
virtual void SetUp() OVERRIDE {
ash::test::AshTestBase::SetUp();
controller_.reset(
- new TestChromeLauncherController(profile(), &launcher_model_));
+ new TestChromeLauncherController(profile(), &shelf_model_));
}
virtual void TearDown() OVERRIDE {
@@ -60,7 +60,7 @@ class LauncherContextMenuTest : public ash::test::AshTestBase {
private:
scoped_ptr<TestingProfile> profile_;
- ash::LauncherModel launcher_model_;
+ ash::ShelfModel shelf_model_;
scoped_ptr<ChromeLauncherController> controller_;
DISALLOW_COPY_AND_ASSIGN(LauncherContextMenuTest);

Powered by Google App Engine
This is Rietveld 408576698