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

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

Issue 2684723003: Remove LauncherItemController::Launch, cleanup. (Closed)
Patch Set: Cleanup Created 3 years, 10 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/ash/launcher/chrome_launcher_controller.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
index 5159b6df9428a0d7b39b906a1639ee9e661f7d64..0a1c52ea918e8324827a7a56e72440052c172731 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller.cc
@@ -37,18 +37,11 @@ void ChromeLauncherController::Init() {
}
void ChromeLauncherController::LaunchApp(const std::string& app_id,
+ const std::string& launch_id,
ash::LaunchSource source,
int event_flags) {
- launcher_controller_helper_->LaunchApp(app_id, source, event_flags);
-}
-
-void ChromeLauncherController::LaunchAppWithLaunchId(
- const std::string& app_id,
- const std::string& launch_id,
- ash::LaunchSource source,
- int event_flags) {
- launcher_controller_helper_->LaunchAppWithLaunchId(app_id, launch_id, source,
- event_flags);
+ launcher_controller_helper_->LaunchApp(app_id, launch_id, source,
+ event_flags);
}
ChromeLauncherController::ChromeLauncherController() : observer_binding_(this) {

Powered by Google App Engine
This is Rietveld 408576698