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

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

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | content/public/browser/web_contents_binding_set.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/provision_fetcher_impl.h" 5 #include "content/public/browser/provision_fetcher_impl.h"
6 6
7 #include "base/memory/ptr_util.h"
7 #include "content/public/browser/provision_fetcher_factory.h" 8 #include "content/public/browser/provision_fetcher_factory.h"
8 #include "mojo/public/cpp/bindings/strong_binding.h" 9 #include "mojo/public/cpp/bindings/strong_binding.h"
9 #include "net/url_request/url_request_context_getter.h" 10 #include "net/url_request/url_request_context_getter.h"
10 11
11 namespace content { 12 namespace content {
12 13
13 // static 14 // static
14 void ProvisionFetcherImpl::Create( 15 void ProvisionFetcherImpl::Create(
15 net::URLRequestContextGetter* context_getter, 16 net::URLRequestContextGetter* context_getter,
16 media::mojom::ProvisionFetcherRequest request) { 17 media::mojom::ProvisionFetcherRequest request) {
(...skipping 22 matching lines...) Expand all
39 } 40 }
40 41
41 void ProvisionFetcherImpl::OnResponse(const RetrieveCallback& callback, 42 void ProvisionFetcherImpl::OnResponse(const RetrieveCallback& callback,
42 bool success, 43 bool success,
43 const std::string& response) { 44 const std::string& response) {
44 DVLOG(1) << __FUNCTION__ << ": " << success; 45 DVLOG(1) << __FUNCTION__ << ": " << success;
45 callback.Run(success, response); 46 callback.Run(success, response);
46 } 47 }
47 48
48 } // namespace content 49 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_thread.cc ('k') | content/public/browser/web_contents_binding_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698