| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 "chrome/browser/ui/views/app_list/win/app_list_service_win.h" | 5 #include "chrome/browser/ui/views/app_list/win/app_list_service_win.h" |
| 6 | 6 |
| 7 #include <dwmapi.h> | 7 #include <dwmapi.h> |
| 8 #include <sstream> | 8 #include <sstream> |
| 9 | 9 |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| 11 #include "base/file_util.h" | 11 #include "base/files/file_util.h" |
| 12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
| 13 #include "base/message_loop/message_loop.h" | 13 #include "base/message_loop/message_loop.h" |
| 14 #include "base/metrics/histogram.h" | 14 #include "base/metrics/histogram.h" |
| 15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
| 16 #include "base/prefs/pref_service.h" | 16 #include "base/prefs/pref_service.h" |
| 17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 18 #include "base/threading/sequenced_worker_pool.h" | 18 #include "base/threading/sequenced_worker_pool.h" |
| 19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
| 20 #include "base/win/shortcut.h" | 20 #include "base/win/shortcut.h" |
| 21 #include "base/win/windows_version.h" | 21 #include "base/win/windows_version.h" |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 activation_tracker_.reset(new ActivationTrackerWin(this)); | 382 activation_tracker_.reset(new ActivationTrackerWin(this)); |
| 383 } | 383 } |
| 384 | 384 |
| 385 void AppListServiceWin::OnViewDismissed() { | 385 void AppListServiceWin::OnViewDismissed() { |
| 386 activation_tracker_->OnViewHidden(); | 386 activation_tracker_->OnViewHidden(); |
| 387 } | 387 } |
| 388 | 388 |
| 389 void AppListServiceWin::MoveNearCursor(app_list::AppListView* view) { | 389 void AppListServiceWin::MoveNearCursor(app_list::AppListView* view) { |
| 390 AppListWin::MoveNearCursor(view); | 390 AppListWin::MoveNearCursor(view); |
| 391 } | 391 } |
| OLD | NEW |