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

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

Issue 1851933002: Convert //url to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IWYU fixup 7 Created 4 years, 9 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/test_info_extractor.h
diff --git a/content/shell/browser/layout_test/test_info_extractor.h b/content/shell/browser/layout_test/test_info_extractor.h
index 1988eacb27cb06c521f4856d389ff50b81ec6165..560e5c0e96180df4115d2ef7d9cf6858c045dce8 100644
--- a/content/shell/browser/layout_test/test_info_extractor.h
+++ b/content/shell/browser/layout_test/test_info_extractor.h
@@ -7,6 +7,7 @@
#include <stddef.h>
+#include <memory>
#include <string>
#include "base/command_line.h"
@@ -34,7 +35,7 @@ class TestInfoExtractor {
explicit TestInfoExtractor(const base::CommandLine::StringVector& cmd_args);
~TestInfoExtractor();
- scoped_ptr<TestInfo> GetNextTest();
+ std::unique_ptr<TestInfo> GetNextTest();
private:
base::CommandLine::StringVector cmdline_args_;

Powered by Google App Engine
This is Rietveld 408576698