| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/views/app_list/win/app_list_controller_delegate_win.
h" | |
| 6 | |
| 7 #include "chrome/browser/profiles/profile.h" | |
| 8 #include "chrome/browser/ui/extensions/application_launch.h" | |
| 9 #include "extensions/browser/app_window/app_window.h" | |
| 10 #include "extensions/browser/app_window/app_window_registry.h" | |
| 11 #include "ui/base/resource/resource_bundle.h" | |
| 12 | |
| 13 AppListControllerDelegateWin::AppListControllerDelegateWin( | |
| 14 AppListServiceViews* service) | |
| 15 : AppListControllerDelegateViews(service) {} | |
| 16 | |
| 17 AppListControllerDelegateWin::~AppListControllerDelegateWin() {} | |
| 18 | |
| 19 bool AppListControllerDelegateWin::ForceNativeDesktop() const { | |
| 20 return true; | |
| 21 } | |
| OLD | NEW |