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

Side by Side Diff: ash/sysui/shell_delegate_mus.cc

Issue 2189063002: [arc-intents] Properly qualify API-generated page transitions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix new occurance of an OpenUrl call. Created 4 years, 4 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 "ash/sysui/shell_delegate_mus.h" 5 #include "ash/sysui/shell_delegate_mus.h"
6 6
7 #include "ash/common/default_accessibility_delegate.h" 7 #include "ash/common/default_accessibility_delegate.h"
8 #include "ash/common/gpu_support_stub.h" 8 #include "ash/common/gpu_support_stub.h"
9 #include "ash/common/media_delegate.h" 9 #include "ash/common/media_delegate.h"
10 #include "ash/common/session/session_state_delegate.h" 10 #include "ash/common/session/session_state_delegate.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 147
148 void ShellDelegateMus::Exit() { 148 void ShellDelegateMus::Exit() {
149 NOTIMPLEMENTED(); 149 NOTIMPLEMENTED();
150 } 150 }
151 151
152 keyboard::KeyboardUI* ShellDelegateMus::CreateKeyboardUI() { 152 keyboard::KeyboardUI* ShellDelegateMus::CreateKeyboardUI() {
153 NOTIMPLEMENTED(); 153 NOTIMPLEMENTED();
154 return nullptr; 154 return nullptr;
155 } 155 }
156 156
157 void ShellDelegateMus::OpenUrl(const GURL& url) { 157 void ShellDelegateMus::OpenUrlFromArc(const GURL& url) {
158 NOTIMPLEMENTED(); 158 NOTIMPLEMENTED();
159 } 159 }
160 160
161 app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() { 161 app_list::AppListPresenter* ShellDelegateMus::GetAppListPresenter() {
162 return app_list_presenter_.get(); 162 return app_list_presenter_.get();
163 } 163 }
164 164
165 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) { 165 ShelfDelegate* ShellDelegateMus::CreateShelfDelegate(ShelfModel* model) {
166 return new ShelfDelegateMus(model); 166 return new ShelfDelegateMus(model);
167 } 167 }
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 return base::string16(); 215 return base::string16();
216 } 216 }
217 217
218 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const { 218 gfx::Image ShellDelegateMus::GetDeprecatedAcceleratorImage() const {
219 NOTIMPLEMENTED(); 219 NOTIMPLEMENTED();
220 return gfx::Image(); 220 return gfx::Image();
221 } 221 }
222 222
223 } // namespace sysui 223 } // namespace sysui
224 } // namespace ash 224 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698