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

Unified Diff: content/shell/browser/layout_test/layout_test_browser_context.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_context.h
diff --git a/content/shell/browser/layout_test/layout_test_browser_context.h b/content/shell/browser/layout_test/layout_test_browser_context.h
index 3be2d6705c55b9e6eaf433678ba605fa3d6f2b34..0d6fcebdbb60c5203088834a0e04ea2247ac5c2a 100644
--- a/content/shell/browser/layout_test/layout_test_browser_context.h
+++ b/content/shell/browser/layout_test/layout_test_browser_context.h
@@ -41,9 +41,9 @@ class LayoutTestBrowserContext : public ShellBrowserContext {
URLRequestInterceptorScopedVector request_interceptors) override;
private:
- scoped_ptr<LayoutTestPushMessagingService> push_messaging_service_;
- scoped_ptr<PermissionManager> permission_manager_;
- scoped_ptr<BackgroundSyncController> background_sync_controller_;
+ std::unique_ptr<LayoutTestPushMessagingService> push_messaging_service_;
+ std::unique_ptr<PermissionManager> permission_manager_;
+ std::unique_ptr<BackgroundSyncController> background_sync_controller_;
DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserContext);
};

Powered by Google App Engine
This is Rietveld 408576698