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

Unified Diff: content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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: content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h
diff --git a/content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h b/content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h
index f65e76034bdb9cf2bcec87dcc815a44c0281e28b..e91365bb7f1888a8fe2a1001662a4a57e86108d9 100644
--- a/content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h
+++ b/content/shell/browser/layout_test/layout_test_bluetooth_chooser_factory.h
@@ -5,12 +5,10 @@
#ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_H_
#define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_H_
-#include "content/public/browser/bluetooth_chooser.h"
-
+#include <memory>
#include <set>
#include <vector>
-#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/bluetooth_chooser.h"
@@ -27,7 +25,7 @@ class LayoutTestBluetoothChooserFactory {
LayoutTestBluetoothChooserFactory();
~LayoutTestBluetoothChooserFactory();
- scoped_ptr<BluetoothChooser> RunBluetoothChooser(
+ std::unique_ptr<BluetoothChooser> RunBluetoothChooser(
RenderFrameHost* frame,
const BluetoothChooser::EventHandler& event_handler);

Powered by Google App Engine
This is Rietveld 408576698