OLD | NEW |
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/browser/gpu/gpu_process_host.h" | 5 #include "content/browser/gpu/gpu_process_host.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <list> | 10 #include <list> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 #include "content/public/common/connection_filter.h" | 50 #include "content/public/common/connection_filter.h" |
51 #include "content/public/common/content_client.h" | 51 #include "content/public/common/content_client.h" |
52 #include "content/public/common/content_switches.h" | 52 #include "content/public/common/content_switches.h" |
53 #include "content/public/common/mojo_channel_switches.h" | 53 #include "content/public/common/mojo_channel_switches.h" |
54 #include "content/public/common/mojo_shell_connection.h" | 54 #include "content/public/common/mojo_shell_connection.h" |
55 #include "content/public/common/result_codes.h" | 55 #include "content/public/common/result_codes.h" |
56 #include "content/public/common/sandbox_type.h" | 56 #include "content/public/common/sandbox_type.h" |
57 #include "content/public/common/sandboxed_process_launcher_delegate.h" | 57 #include "content/public/common/sandboxed_process_launcher_delegate.h" |
58 #include "gpu/command_buffer/service/gpu_preferences.h" | 58 #include "gpu/command_buffer/service/gpu_preferences.h" |
59 #include "gpu/command_buffer/service/gpu_switches.h" | 59 #include "gpu/command_buffer/service/gpu_switches.h" |
| 60 #include "gpu/ipc/service/switches.h" |
60 #include "ipc/ipc_channel_handle.h" | 61 #include "ipc/ipc_channel_handle.h" |
61 #include "ipc/ipc_switches.h" | 62 #include "ipc/ipc_switches.h" |
62 #include "ipc/message_filter.h" | 63 #include "ipc/message_filter.h" |
63 #include "media/base/media_switches.h" | 64 #include "media/base/media_switches.h" |
64 #include "mojo/edk/embedder/embedder.h" | 65 #include "mojo/edk/embedder/embedder.h" |
65 #include "services/shell/public/cpp/connection.h" | 66 #include "services/shell/public/cpp/connection.h" |
66 #include "services/shell/public/cpp/interface_provider.h" | 67 #include "services/shell/public/cpp/interface_provider.h" |
67 #include "services/shell/runner/common/client_util.h" | 68 #include "services/shell/runner/common/client_util.h" |
68 #include "ui/base/ui_base_switches.h" | 69 #include "ui/base/ui_base_switches.h" |
69 #include "ui/events/latency_info.h" | 70 #include "ui/events/latency_info.h" |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 TRACE_EVENT0("gpu", "GpuProcessHost::OnCacheShader"); | 1167 TRACE_EVENT0("gpu", "GpuProcessHost::OnCacheShader"); |
1167 ClientIdToShaderCacheMap::iterator iter = | 1168 ClientIdToShaderCacheMap::iterator iter = |
1168 client_id_to_shader_cache_.find(client_id); | 1169 client_id_to_shader_cache_.find(client_id); |
1169 // If the cache doesn't exist then this is an off the record profile. | 1170 // If the cache doesn't exist then this is an off the record profile. |
1170 if (iter == client_id_to_shader_cache_.end()) | 1171 if (iter == client_id_to_shader_cache_.end()) |
1171 return; | 1172 return; |
1172 iter->second->Cache(GetShaderPrefixKey() + ":" + key, shader); | 1173 iter->second->Cache(GetShaderPrefixKey() + ":" + key, shader); |
1173 } | 1174 } |
1174 | 1175 |
1175 } // namespace content | 1176 } // namespace content |
OLD | NEW |