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

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: rebased, comments addressed, add policy pins movable, add and extends unit tests 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 const std::string& app_id) { 249 const std::string& app_id) {
254 NOTIMPLEMENTED(); 250 NOTIMPLEMENTED();
255 return AppListControllerDelegate::NO_PIN; 251 return AppListControllerDelegate::NO_PIN;
256 } 252 }
257 253
258 ArcAppDeferredLauncherController* 254 ArcAppDeferredLauncherController*
259 ChromeLauncherControllerMus::GetArcDeferredLauncher() { 255 ChromeLauncherControllerMus::GetArcDeferredLauncher() {
260 NOTIMPLEMENTED(); 256 NOTIMPLEMENTED();
261 return nullptr; 257 return nullptr;
262 } 258 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698