OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |