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

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

Issue 58813002: Upon activation on mixed mode, we only show and use apps of the current user. Furthermore we should… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed 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/chrome_launcher_controller_unittest.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
index e1a17382acd366ad5bc8bf9af8008b652778839b..7b40911f0a6b35f4bee23d9fe661203d86cf943f 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_unittest.cc
@@ -225,9 +225,9 @@ class TestV2AppLauncherItemController : public LauncherItemController {
virtual bool IsOpen() const OVERRIDE { return true; }
virtual bool IsVisible() const OVERRIDE { return true; }
virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE {}
- virtual void Activate(ash::LaunchSource source) OVERRIDE {}
+ virtual bool Activate(ash::LaunchSource source) OVERRIDE { return false; }
virtual void Close() OVERRIDE {}
- virtual void ItemSelected(const ui::Event& event) OVERRIDE {}
+ virtual bool ItemSelected(const ui::Event& event) OVERRIDE { return false; }
virtual string16 GetTitle() OVERRIDE { return string16(); }
virtual ChromeLauncherAppMenuItems GetApplicationList(
int event_flags) OVERRIDE {

Powered by Google App Engine
This is Rietveld 408576698