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

Side by Side Diff: ash/shell/shell_delegate_impl.cc

Issue 2202753002: [arc-intents] Properly qualify API-generated page transitions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: 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
« no previous file with comments | « ash/shell/shell_delegate_impl.h ('k') | ash/shell_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/shell/shell_delegate_impl.h" 5 #include "ash/shell/shell_delegate_impl.h"
6 6
7 #include "ash/app_list/app_list_presenter_delegate_factory.h" 7 #include "ash/app_list/app_list_presenter_delegate_factory.h"
8 #include "ash/common/accessibility_delegate.h" 8 #include "ash/common/accessibility_delegate.h"
9 #include "ash/common/default_accessibility_delegate.h" 9 #include "ash/common/default_accessibility_delegate.h"
10 #include "ash/common/media_delegate.h" 10 #include "ash/common/media_delegate.h"
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 } 205 }
206 206
207 void ShellDelegateImpl::VirtualKeyboardActivated(bool activated) {} 207 void ShellDelegateImpl::VirtualKeyboardActivated(bool activated) {}
208 208
209 void ShellDelegateImpl::AddVirtualKeyboardStateObserver( 209 void ShellDelegateImpl::AddVirtualKeyboardStateObserver(
210 VirtualKeyboardStateObserver* observer) {} 210 VirtualKeyboardStateObserver* observer) {}
211 211
212 void ShellDelegateImpl::RemoveVirtualKeyboardStateObserver( 212 void ShellDelegateImpl::RemoveVirtualKeyboardStateObserver(
213 VirtualKeyboardStateObserver* observer) {} 213 VirtualKeyboardStateObserver* observer) {}
214 214
215 void ShellDelegateImpl::OpenUrl(const GURL& url) {} 215 void ShellDelegateImpl::OpenUrlFromArc(const GURL& url) {}
216 216
217 app_list::AppListPresenter* ShellDelegateImpl::GetAppListPresenter() { 217 app_list::AppListPresenter* ShellDelegateImpl::GetAppListPresenter() {
218 if (!app_list_presenter_) { 218 if (!app_list_presenter_) {
219 app_list_presenter_.reset(new app_list::AppListPresenterImpl( 219 app_list_presenter_.reset(new app_list::AppListPresenterImpl(
220 app_list_presenter_delegate_factory_.get())); 220 app_list_presenter_delegate_factory_.get()));
221 } 221 }
222 return app_list_presenter_.get(); 222 return app_list_presenter_.get();
223 } 223 }
224 224
225 ShelfDelegate* ShellDelegateImpl::CreateShelfDelegate(ShelfModel* model) { 225 ShelfDelegate* ShellDelegateImpl::CreateShelfDelegate(ShelfModel* model) {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 base::string16 ShellDelegateImpl::GetProductName() const { 269 base::string16 ShellDelegateImpl::GetProductName() const {
270 return base::string16(); 270 return base::string16();
271 } 271 }
272 272
273 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const { 273 gfx::Image ShellDelegateImpl::GetDeprecatedAcceleratorImage() const {
274 return gfx::Image(); 274 return gfx::Image();
275 } 275 }
276 276
277 } // namespace shell 277 } // namespace shell
278 } // namespace ash 278 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.h ('k') | ash/shell_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698