Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2465)

Side by Side Diff: chrome/browser/chromeos/extensions/wallpaper_private_api.cc

Issue 2808723004: Renames WmShell to ShellPort (Closed)
Patch Set: feedback Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/shell.h" 14 #include "ash/shell.h"
15 #include "ash/wm/mru_window_tracker.h" 15 #include "ash/wm/mru_window_tracker.h"
16 #include "ash/wm/window_state.h" 16 #include "ash/wm/window_state.h"
17 #include "ash/wm/window_state_aura.h" 17 #include "ash/wm/window_state_aura.h"
18 #include "ash/wm/window_util.h" 18 #include "ash/wm/window_util.h"
19 #include "ash/wm_shell.h"
20 #include "ash/wm_window.h" 19 #include "ash/wm_window.h"
21 #include "base/command_line.h" 20 #include "base/command_line.h"
22 #include "base/files/file_enumerator.h" 21 #include "base/files/file_enumerator.h"
23 #include "base/files/file_util.h" 22 #include "base/files/file_util.h"
24 #include "base/macros.h" 23 #include "base/macros.h"
25 #include "base/memory/ptr_util.h" 24 #include "base/memory/ptr_util.h"
26 #include "base/memory/ref_counted_memory.h" 25 #include "base/memory/ref_counted_memory.h"
27 #include "base/metrics/histogram_macros.h" 26 #include "base/metrics/histogram_macros.h"
28 #include "base/path_service.h" 27 #include "base/path_service.h"
29 #include "base/strings/string_number_conversions.h" 28 #include "base/strings/string_number_conversions.h"
(...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 WallpaperPrivateRecordWallpaperUMAFunction::Run() { 956 WallpaperPrivateRecordWallpaperUMAFunction::Run() {
958 std::unique_ptr<record_wallpaper_uma::Params> params( 957 std::unique_ptr<record_wallpaper_uma::Params> params(
959 record_wallpaper_uma::Params::Create(*args_)); 958 record_wallpaper_uma::Params::Create(*args_));
960 EXTENSION_FUNCTION_VALIDATE(params); 959 EXTENSION_FUNCTION_VALIDATE(params);
961 960
962 user_manager::User::WallpaperType source = getWallpaperType(params->source); 961 user_manager::User::WallpaperType source = getWallpaperType(params->source);
963 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source, 962 UMA_HISTOGRAM_ENUMERATION("Ash.Wallpaper.Source", source,
964 user_manager::User::WALLPAPER_TYPE_COUNT); 963 user_manager::User::WALLPAPER_TYPE_COUNT);
965 return RespondNow(NoArguments()); 964 return RespondNow(NoArguments());
966 } 965 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698