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 <string> | 5 #include <string> |
6 | 6 |
7 #include "ash/session_state_delegate.h" | 7 #include "ash/session_state_delegate.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/shell/example_factory.h" | 9 #include "ash/shell/example_factory.h" |
10 #include "ash/shell/toplevel_window.h" | 10 #include "ash/shell/toplevel_window.h" |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 } | 300 } |
301 | 301 |
302 virtual base::string16 GetCurrentUserEmail() OVERRIDE { | 302 virtual base::string16 GetCurrentUserEmail() OVERRIDE { |
303 return base::string16(); | 303 return base::string16(); |
304 } | 304 } |
305 | 305 |
306 virtual void OpenSettings() OVERRIDE { | 306 virtual void OpenSettings() OVERRIDE { |
307 // Nothing needs to be done. | 307 // Nothing needs to be done. |
308 } | 308 } |
309 | 309 |
| 310 virtual void OpenHelp() OVERRIDE { |
| 311 // Nothing needs to be done. |
| 312 } |
| 313 |
310 virtual void OpenFeedback() OVERRIDE { | 314 virtual void OpenFeedback() OVERRIDE { |
311 // Nothing needs to be done. | 315 // Nothing needs to be done. |
312 } | 316 } |
313 | 317 |
314 app_list::AppListModel* model_; | 318 app_list::AppListModel* model_; |
315 | 319 |
316 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate); | 320 DISALLOW_COPY_AND_ASSIGN(ExampleAppListViewDelegate); |
317 }; | 321 }; |
318 | 322 |
319 } // namespace | 323 } // namespace |
320 | 324 |
321 app_list::AppListViewDelegate* CreateAppListViewDelegate() { | 325 app_list::AppListViewDelegate* CreateAppListViewDelegate() { |
322 return new ExampleAppListViewDelegate; | 326 return new ExampleAppListViewDelegate; |
323 } | 327 } |
324 | 328 |
325 } // namespace shell | 329 } // namespace shell |
326 } // namespace ash | 330 } // namespace ash |
OLD | NEW |