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

Unified Diff: ash/host/ash_window_tree_host.h

Issue 1867223004: Convert //ash from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/frame/frame_border_hit_test_controller.cc ('k') | ash/host/ash_window_tree_host_platform.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/host/ash_window_tree_host.h
diff --git a/ash/host/ash_window_tree_host.h b/ash/host/ash_window_tree_host.h
index f9ac376f9bc268b9f54fa5545c3196fe6b2a4c6f..bf9afa49ae38a989df35b988f30f8f6b1725da80 100644
--- a/ash/host/ash_window_tree_host.h
+++ b/ash/host/ash_window_tree_host.h
@@ -5,9 +5,10 @@
#ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_H_
#define ASH_HOST_ASH_WINDOW_TREE_HOST_H_
+#include <memory>
+
#include "ash/ash_export.h"
#include "base/callback_forward.h"
-#include "base/memory/scoped_ptr.h"
namespace aura {
class Window;
@@ -62,7 +63,7 @@ class ASH_EXPORT AshWindowTreeHost {
virtual void UnConfineCursor() = 0;
virtual void SetRootWindowTransformer(
- scoped_ptr<RootWindowTransformer> transformer) = 0;
+ std::unique_ptr<RootWindowTransformer> transformer) = 0;
virtual gfx::Insets GetHostInsets() const = 0;
« no previous file with comments | « ash/frame/frame_border_hit_test_controller.cc ('k') | ash/host/ash_window_tree_host_platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698