OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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/chromeos/extensions/wallpaper_private_api.h" | 5 #include "chrome/browser/chromeos/extensions/wallpaper_private_api.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <memory> | 8 #include <memory> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
| 14 #include "ash/common/wm/window_state.h" |
14 #include "ash/desktop_background/desktop_background_controller.h" | 15 #include "ash/desktop_background/desktop_background_controller.h" |
15 #include "ash/shell.h" | 16 #include "ash/shell.h" |
16 #include "ash/wm/common/window_state.h" | |
17 #include "ash/wm/mru_window_tracker.h" | 17 #include "ash/wm/mru_window_tracker.h" |
18 #include "ash/wm/window_state_aura.h" | 18 #include "ash/wm/window_state_aura.h" |
19 #include "ash/wm/window_util.h" | 19 #include "ash/wm/window_util.h" |
20 #include "base/command_line.h" | 20 #include "base/command_line.h" |
21 #include "base/files/file_enumerator.h" | 21 #include "base/files/file_enumerator.h" |
22 #include "base/files/file_util.h" | 22 #include "base/files/file_util.h" |
23 #include "base/macros.h" | 23 #include "base/macros.h" |
24 #include "base/memory/ptr_util.h" | 24 #include "base/memory/ptr_util.h" |
25 #include "base/memory/ref_counted_memory.h" | 25 #include "base/memory/ref_counted_memory.h" |
26 #include "base/metrics/histogram_macros.h" | 26 #include "base/metrics/histogram_macros.h" |
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
965 bool WallpaperPrivateRecordWallpaperUMAFunction::RunSync() { | 965 bool WallpaperPrivateRecordWallpaperUMAFunction::RunSync() { |
966 std::unique_ptr<record_wallpaper_uma::Params> params( | 966 std::unique_ptr<record_wallpaper_uma::Params> params( |
967 record_wallpaper_uma::Params::Create(*args_)); | 967 record_wallpaper_uma::Params::Create(*args_)); |
968 EXTENSION_FUNCTION_VALIDATE(params); | 968 EXTENSION_FUNCTION_VALIDATE(params); |
969 | 969 |
970 user_manager::User::WallpaperType source = getWallpaperType(params->source); | 970 user_manager::User::WallpaperType source = getWallpaperType(params->source); |
971 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source, | 971 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source, |
972 user_manager::User::WALLPAPER_TYPE_COUNT); | 972 user_manager::User::WALLPAPER_TYPE_COUNT); |
973 return true; | 973 return true; |
974 } | 974 } |
OLD | NEW |