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

Side by Side Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.cc

Issue 2055553004: arc: Support pinned apps across Arc-enabled and Arc-disabled platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome_mash_shelf_controller.cc update due namespace renaming 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h" 5 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h"
6 6
7 #include "chrome/browser/profiles/profile_manager.h" 7 #include "chrome/browser/profiles/profile_manager.h"
8 #include "chrome/browser/ui/ash/launcher/chrome_mash_shelf_controller.h" 8 #include "chrome/browser/ui/ash/launcher/chrome_mash_shelf_controller.h"
9 9
10 // static 10 // static
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 NOTIMPLEMENTED(); 122 NOTIMPLEMENTED();
123 return false; 123 return false;
124 } 124 }
125 125
126 void ChromeLauncherControllerMus::SetLaunchType( 126 void ChromeLauncherControllerMus::SetLaunchType(
127 ash::ShelfID id, 127 ash::ShelfID id,
128 extensions::LaunchType launch_type) { 128 extensions::LaunchType launch_type) {
129 NOTIMPLEMENTED(); 129 NOTIMPLEMENTED();
130 } 130 }
131 131
132 void ChromeLauncherControllerMus::PersistPinnedState() {
133 NOTIMPLEMENTED();
134 }
135
136 Profile* ChromeLauncherControllerMus::GetProfile() { 132 Profile* ChromeLauncherControllerMus::GetProfile() {
137 return ProfileManager::GetActiveUserProfile(); 133 return ProfileManager::GetActiveUserProfile();
138 } 134 }
139 135
140 void ChromeLauncherControllerMus::UpdateAppState(content::WebContents* contents, 136 void ChromeLauncherControllerMus::UpdateAppState(content::WebContents* contents,
141 AppState app_state) { 137 AppState app_state) {
142 NOTIMPLEMENTED(); 138 NOTIMPLEMENTED();
143 } 139 }
144 140
145 ash::ShelfID ChromeLauncherControllerMus::GetShelfIDForWebContents( 141 ash::ShelfID ChromeLauncherControllerMus::GetShelfIDForWebContents(
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 const std::string& app_id) { 253 const std::string& app_id) {
258 NOTIMPLEMENTED(); 254 NOTIMPLEMENTED();
259 return AppListControllerDelegate::NO_PIN; 255 return AppListControllerDelegate::NO_PIN;
260 } 256 }
261 257
262 ArcAppDeferredLauncherController* 258 ArcAppDeferredLauncherController*
263 ChromeLauncherControllerMus::GetArcDeferredLauncher() { 259 ChromeLauncherControllerMus::GetArcDeferredLauncher() {
264 NOTIMPLEMENTED(); 260 NOTIMPLEMENTED();
265 return nullptr; 261 return nullptr;
266 } 262 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698