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

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.cc

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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "content/public/browser/resource_dispatcher_host_delegate.h" 5 #include "content/public/browser/resource_dispatcher_host_delegate.h"
6 6
7 #include "content/public/browser/resource_request_info.h" 7 #include "content/public/browser/resource_request_info.h"
8 #include "content/public/browser/stream_info.h" 8 #include "content/public/browser/stream_info.h"
9 9
10 namespace content { 10 namespace content {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 net::URLRequest* request, 63 net::URLRequest* request,
64 const base::FilePath& plugin_path, 64 const base::FilePath& plugin_path,
65 const std::string& mime_type, 65 const std::string& mime_type,
66 GURL* origin, 66 GURL* origin,
67 std::string* payload) { 67 std::string* payload) {
68 return false; 68 return false;
69 } 69 }
70 70
71 void ResourceDispatcherHostDelegate::OnStreamCreated( 71 void ResourceDispatcherHostDelegate::OnStreamCreated(
72 net::URLRequest* request, 72 net::URLRequest* request,
73 scoped_ptr<content::StreamInfo> stream) { 73 std::unique_ptr<content::StreamInfo> stream) {}
74 }
75 74
76 void ResourceDispatcherHostDelegate::OnResponseStarted( 75 void ResourceDispatcherHostDelegate::OnResponseStarted(
77 net::URLRequest* request, 76 net::URLRequest* request,
78 ResourceContext* resource_context, 77 ResourceContext* resource_context,
79 ResourceResponse* response, 78 ResourceResponse* response,
80 IPC::Sender* sender) { 79 IPC::Sender* sender) {
81 } 80 }
82 81
83 void ResourceDispatcherHostDelegate::OnRequestRedirected( 82 void ResourceDispatcherHostDelegate::OnRequestRedirected(
84 const GURL& redirect_url, 83 const GURL& redirect_url,
(...skipping 12 matching lines...) Expand all
97 return false; 96 return false;
98 } 97 }
99 98
100 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { 99 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() {
101 } 100 }
102 101
103 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { 102 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() {
104 } 103 }
105 104
106 } // namespace content 105 } // namespace content
OLDNEW
« no previous file with comments | « content/public/browser/resource_dispatcher_host_delegate.h ('k') | content/public/browser/screen_orientation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698