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

Unified Diff: ash/aura/wm_shell_aura.cc

Issue 2150023002: Add ShellDelegate, MediaDelegate and KeyboardUI stubs to mus ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/aura/wm_shell_aura.h ('k') | ash/common/gpu_support.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/aura/wm_shell_aura.cc
diff --git a/ash/aura/wm_shell_aura.cc b/ash/aura/wm_shell_aura.cc
index 19871636cb123b25a6d12df475787fc7ca58e342..c5a4db581aa332738d9ff87ba3c1e542f71c9f24 100644
--- a/ash/aura/wm_shell_aura.cc
+++ b/ash/aura/wm_shell_aura.cc
@@ -4,6 +4,8 @@
#include "ash/aura/wm_shell_aura.h"
+#include <utility>
+
#include "ash/aura/wm_window_aura.h"
#include "ash/common/session/session_state_delegate.h"
#include "ash/common/shell_delegate.h"
@@ -38,7 +40,8 @@
namespace ash {
-WmShellAura::WmShellAura(ShellDelegate* delegate) : WmShell(delegate) {
+WmShellAura::WmShellAura(std::unique_ptr<ShellDelegate> shell_delegate)
+ : WmShell(std::move(shell_delegate)) {
WmShell::Set(this);
}
« no previous file with comments | « ash/aura/wm_shell_aura.h ('k') | ash/common/gpu_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698