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

Unified Diff: content/shell/browser/layout_test/layout_test_browser_main.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_browser_main.h
diff --git a/content/shell/browser/layout_test/layout_test_browser_main.h b/content/shell/browser/layout_test/layout_test_browser_main.h
index dfe66c5ba6d44cd0f1312a6759ee0fcb301f598e..a783f31e219ce29da6c1a047d862c50b365cf32a 100644
--- a/content/shell/browser/layout_test/layout_test_browser_main.h
+++ b/content/shell/browser/layout_test/layout_test_browser_main.h
@@ -5,7 +5,7 @@
#ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_H_
#define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace content {
class BrowserMainRunner;
@@ -14,6 +14,6 @@ struct MainFunctionParams;
int LayoutTestBrowserMain(
const content::MainFunctionParams& parameters,
- const scoped_ptr<content::BrowserMainRunner>& main_runner);
+ const std::unique_ptr<content::BrowserMainRunner>& main_runner);
#endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_H_

Powered by Google App Engine
This is Rietveld 408576698