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

Side by Side Diff: content/shell/browser/layout_test/layout_test_content_browser_client.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_ 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "content/shell/browser/shell_content_browser_client.h" 8 #include "content/shell/browser/shell_content_browser_client.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 20 matching lines...) Expand all
31 WebPreferences* prefs) override; 31 WebPreferences* prefs) override;
32 void ResourceDispatcherHostCreated() override; 32 void ResourceDispatcherHostCreated() override;
33 void AppendExtraCommandLineSwitches(base::CommandLine* command_line, 33 void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
34 int child_process_id) override; 34 int child_process_id) override;
35 BrowserMainParts* CreateBrowserMainParts( 35 BrowserMainParts* CreateBrowserMainParts(
36 const MainFunctionParams& parameters) override; 36 const MainFunctionParams& parameters) override;
37 37
38 PlatformNotificationService* GetPlatformNotificationService() override; 38 PlatformNotificationService* GetPlatformNotificationService() override;
39 39
40 private: 40 private:
41 scoped_ptr<LayoutTestNotificationManager> layout_test_notification_manager_; 41 std::unique_ptr<LayoutTestNotificationManager>
42 layout_test_notification_manager_;
42 }; 43 };
43 44
44 } // content 45 } // content
45 46
46 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_ H_ 47 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_CONTENT_BROWSER_CLIENT_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698