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

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

Issue 2248873002: Convert WindowOpenDisposition to an enum class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 3 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) 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 "chrome/browser/chromeos/extensions/wallpaper_manager_util.h" 5 #include "chrome/browser/chromeos/extensions/wallpaper_manager_util.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/extensions/extension_service.h" 8 #include "chrome/browser/extensions/extension_service.h"
9 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/profiles/profile_manager.h" 10 #include "chrome/browser/profiles/profile_manager.h"
(...skipping 14 matching lines...) Expand all
25 ExtensionService* service = 25 ExtensionService* service =
26 extensions::ExtensionSystem::Get(profile)->extension_service(); 26 extensions::ExtensionSystem::Get(profile)->extension_service();
27 if (!service) 27 if (!service)
28 return; 28 return;
29 29
30 const extensions::Extension* extension = 30 const extensions::Extension* extension =
31 service->GetExtensionById(extension_misc::kWallpaperManagerId, false); 31 service->GetExtensionById(extension_misc::kWallpaperManagerId, false);
32 if (!extension) 32 if (!extension)
33 return; 33 return;
34 34
35 OpenApplication( 35 OpenApplication(AppLaunchParams(
36 AppLaunchParams(profile, extension, extensions::LAUNCH_CONTAINER_WINDOW, 36 profile, extension, extensions::LAUNCH_CONTAINER_WINDOW,
37 NEW_WINDOW, extensions::SOURCE_CHROME_INTERNAL)); 37 WindowOpenDisposition::NEW_WINDOW, extensions::SOURCE_CHROME_INTERNAL));
38 } 38 }
39 39
40 } // namespace wallpaper_manager_util 40 } // namespace wallpaper_manager_util
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/extensions/input_method_api.cc ('k') | chrome/browser/chromeos/first_run/first_run.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698