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

Unified Diff: chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h

Issue 1865213004: Convert //chrome/browser/ui from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
Index: chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h
diff --git a/chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h b/chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h
index 9fd28518c9fd278fe46a8e44d2b3dbb881eb53a2..ac09d6056946ffaf7203db7f968a0ceda12211a6 100644
--- a/chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h
+++ b/chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h
@@ -8,9 +8,9 @@
#include <stdint.h>
#include <map>
+#include <memory>
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/aura/accessibility/ax_root_obj_wrapper.h"
#include "ui/accessibility/ax_tree_data.h"
#include "ui/accessibility/ax_tree_source.h"
@@ -57,7 +57,7 @@ class AXTreeSourceAura
std::string ToString(views::AXAuraObjWrapper* root, std::string prefix);
private:
- scoped_ptr<AXRootObjWrapper> root_;
+ std::unique_ptr<AXRootObjWrapper> root_;
DISALLOW_COPY_AND_ASSIGN(AXTreeSourceAura);
};
« no previous file with comments | « chrome/browser/ui/aura/accessibility/automation_manager_aura.h ('k') | chrome/browser/ui/aura/native_window_tracker_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698