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

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

Issue 2067943004: ARC: Add badge for Chrome hosted Apps if Arc++ is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address xiyuan@'s comment. 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 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 NOTIMPLEMENTED(); 220 NOTIMPLEMENTED();
221 return base::string16(); 221 return base::string16();
222 } 222 }
223 223
224 BrowserShortcutLauncherItemController* 224 BrowserShortcutLauncherItemController*
225 ChromeLauncherControllerMus::GetBrowserShortcutLauncherItemController() { 225 ChromeLauncherControllerMus::GetBrowserShortcutLauncherItemController() {
226 NOTIMPLEMENTED(); 226 NOTIMPLEMENTED();
227 return nullptr; 227 return nullptr;
228 } 228 }
229 229
230 void ChromeLauncherControllerMus::MayUpdateBrowserShortcutItem() {
231 NOTIMPLEMENTED();
232 }
233
230 LauncherItemController* ChromeLauncherControllerMus::GetLauncherItemController( 234 LauncherItemController* ChromeLauncherControllerMus::GetLauncherItemController(
231 const ash::ShelfID id) { 235 const ash::ShelfID id) {
232 NOTIMPLEMENTED(); 236 NOTIMPLEMENTED();
233 return nullptr; 237 return nullptr;
234 } 238 }
235 239
236 bool ChromeLauncherControllerMus::IsBrowserFromActiveUser(Browser* browser) { 240 bool ChromeLauncherControllerMus::IsBrowserFromActiveUser(Browser* browser) {
237 NOTIMPLEMENTED(); 241 NOTIMPLEMENTED();
238 return false; 242 return false;
239 } 243 }
(...skipping 13 matching lines...) Expand all
253 const std::string& app_id) { 257 const std::string& app_id) {
254 NOTIMPLEMENTED(); 258 NOTIMPLEMENTED();
255 return AppListControllerDelegate::NO_PIN; 259 return AppListControllerDelegate::NO_PIN;
256 } 260 }
257 261
258 ArcAppDeferredLauncherController* 262 ArcAppDeferredLauncherController*
259 ChromeLauncherControllerMus::GetArcDeferredLauncher() { 263 ChromeLauncherControllerMus::GetArcDeferredLauncher() {
260 NOTIMPLEMENTED(); 264 NOTIMPLEMENTED();
261 return nullptr; 265 return nullptr;
262 } 266 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/launcher/chrome_launcher_controller_mus.h ('k') | chrome/browser/ui/ash/launcher/launcher_app_updater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698