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

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 2069803003: Fold //ipc/mojo into //ipc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-ipc-deps
Patch Set: rebase Created 4 years, 6 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/renderer/BUILD.gn ('k') | content/test/BUILD.gn » ('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 (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/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 #include "content/renderer/service_worker/embedded_worker_dispatcher.h" 124 #include "content/renderer/service_worker/embedded_worker_dispatcher.h"
125 #include "content/renderer/service_worker/service_worker_context_client.h" 125 #include "content/renderer/service_worker/service_worker_context_client.h"
126 #include "content/renderer/service_worker/service_worker_context_message_filter. h" 126 #include "content/renderer/service_worker/service_worker_context_message_filter. h"
127 #include "content/renderer/shared_worker/embedded_shared_worker_stub.h" 127 #include "content/renderer/shared_worker/embedded_shared_worker_stub.h"
128 #include "gin/public/debug.h" 128 #include "gin/public/debug.h"
129 #include "gpu/GLES2/gl2extchromium.h" 129 #include "gpu/GLES2/gl2extchromium.h"
130 #include "gpu/command_buffer/client/shared_memory_limits.h" 130 #include "gpu/command_buffer/client/shared_memory_limits.h"
131 #include "gpu/ipc/client/command_buffer_proxy_impl.h" 131 #include "gpu/ipc/client/command_buffer_proxy_impl.h"
132 #include "gpu/ipc/client/gpu_channel_host.h" 132 #include "gpu/ipc/client/gpu_channel_host.h"
133 #include "ipc/ipc_channel_handle.h" 133 #include "ipc/ipc_channel_handle.h"
134 #include "ipc/ipc_channel_mojo.h"
134 #include "ipc/ipc_platform_file.h" 135 #include "ipc/ipc_platform_file.h"
135 #include "ipc/mojo/ipc_channel_mojo.h"
136 #include "media/base/audio_hardware_config.h" 136 #include "media/base/audio_hardware_config.h"
137 #include "media/base/media.h" 137 #include "media/base/media.h"
138 #include "media/renderers/gpu_video_accelerator_factories.h" 138 #include "media/renderers/gpu_video_accelerator_factories.h"
139 #include "mojo/common/common_type_converters.h" 139 #include "mojo/common/common_type_converters.h"
140 #include "mojo/public/cpp/bindings/strong_binding.h" 140 #include "mojo/public/cpp/bindings/strong_binding.h"
141 #include "net/base/net_errors.h" 141 #include "net/base/net_errors.h"
142 #include "net/base/port_util.h" 142 #include "net/base/port_util.h"
143 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" 143 #include "net/base/registry_controlled_domains/registry_controlled_domain.h"
144 #include "net/base/url_util.h" 144 #include "net/base/url_util.h"
145 #include "skia/ext/event_tracer_impl.h" 145 #include "skia/ext/event_tracer_impl.h"
(...skipping 2071 matching lines...) Expand 10 before | Expand all | Expand 10 after
2217 v8_memory_pressure_level == v8::MemoryPressureLevel::kCritical) 2217 v8_memory_pressure_level == v8::MemoryPressureLevel::kCritical)
2218 v8_memory_pressure_level = v8::MemoryPressureLevel::kModerate; 2218 v8_memory_pressure_level = v8::MemoryPressureLevel::kModerate;
2219 2219
2220 blink::mainThreadIsolate()->MemoryPressureNotification( 2220 blink::mainThreadIsolate()->MemoryPressureNotification(
2221 v8_memory_pressure_level); 2221 v8_memory_pressure_level);
2222 blink::MemoryPressureNotificationToWorkerThreadIsolates( 2222 blink::MemoryPressureNotificationToWorkerThreadIsolates(
2223 v8_memory_pressure_level); 2223 v8_memory_pressure_level);
2224 } 2224 }
2225 2225
2226 } // namespace content 2226 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698