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

Side by Side Diff: components/nacl/renderer/ppb_nacl_private_impl.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 Created 4 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "components/nacl/renderer/ppb_nacl_private.h" 5 #include "components/nacl/renderer/ppb_nacl_private.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 10 matching lines...) Expand all
21 #include "base/files/file.h" 21 #include "base/files/file.h"
22 #include "base/json/json_reader.h" 22 #include "base/json/json_reader.h"
23 #include "base/lazy_instance.h" 23 #include "base/lazy_instance.h"
24 #include "base/location.h" 24 #include "base/location.h"
25 #include "base/logging.h" 25 #include "base/logging.h"
26 #include "base/macros.h" 26 #include "base/macros.h"
27 #include "base/process/process_handle.h" 27 #include "base/process/process_handle.h"
28 #include "base/single_thread_task_runner.h" 28 #include "base/single_thread_task_runner.h"
29 #include "base/strings/string_split.h" 29 #include "base/strings/string_split.h"
30 #include "base/strings/string_util.h" 30 #include "base/strings/string_util.h"
31 #include "base/thread_task_runner_handle.h" 31 #include "base/threading/thread_task_runner_handle.h"
32 #include "build/build_config.h" 32 #include "build/build_config.h"
33 #include "components/nacl/common/nacl_host_messages.h" 33 #include "components/nacl/common/nacl_host_messages.h"
34 #include "components/nacl/common/nacl_messages.h" 34 #include "components/nacl/common/nacl_messages.h"
35 #include "components/nacl/common/nacl_nonsfi_util.h" 35 #include "components/nacl/common/nacl_nonsfi_util.h"
36 #include "components/nacl/common/nacl_switches.h" 36 #include "components/nacl/common/nacl_switches.h"
37 #include "components/nacl/common/nacl_types.h" 37 #include "components/nacl/common/nacl_types.h"
38 #include "components/nacl/renderer/file_downloader.h" 38 #include "components/nacl/renderer/file_downloader.h"
39 #include "components/nacl/renderer/histogram.h" 39 #include "components/nacl/renderer/histogram.h"
40 #include "components/nacl/renderer/json_manifest.h" 40 #include "components/nacl/renderer/json_manifest.h"
41 #include "components/nacl/renderer/manifest_downloader.h" 41 #include "components/nacl/renderer/manifest_downloader.h"
(...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after
1746 // Mark the request as requesting a PNaCl bitcode file, 1746 // Mark the request as requesting a PNaCl bitcode file,
1747 // so that component updater can detect this user action. 1747 // so that component updater can detect this user action.
1748 url_request.addHTTPHeaderField( 1748 url_request.addHTTPHeaderField(
1749 blink::WebString::fromUTF8("Accept"), 1749 blink::WebString::fromUTF8("Accept"),
1750 blink::WebString::fromUTF8("application/x-pnacl, */*")); 1750 blink::WebString::fromUTF8("application/x-pnacl, */*"));
1751 url_request.setRequestContext(blink::WebURLRequest::RequestContextObject); 1751 url_request.setRequestContext(blink::WebURLRequest::RequestContextObject);
1752 downloader->Load(url_request); 1752 downloader->Load(url_request);
1753 } 1753 }
1754 1754
1755 } // namespace nacl 1755 } // namespace nacl
OLDNEW
« no previous file with comments | « components/nacl/loader/nacl_ipc_adapter_unittest.cc ('k') | components/network_hints/renderer/renderer_dns_prefetch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698