| 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/renderer_host/pepper/browser_ppapi_host_impl.h" | 5 #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/metrics/sparse_histogram.h" | 8 #include "base/metrics/histogram_macros.h" |
| 9 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" | 9 #include "content/browser/renderer_host/pepper/pepper_message_filter.h" |
| 10 #include "content/browser/tracing/trace_message_filter.h" | 10 #include "content/browser/tracing/trace_message_filter.h" |
| 11 #include "content/common/pepper_renderer_instance_data.h" | 11 #include "content/common/pepper_renderer_instance_data.h" |
| 12 #include "content/public/common/process_type.h" | 12 #include "content/public/common/process_type.h" |
| 13 #include "ipc/ipc_message_macros.h" | 13 #include "ipc/ipc_message_macros.h" |
| 14 #include "ppapi/proxy/ppapi_messages.h" | 14 #include "ppapi/proxy/ppapi_messages.h" |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 // static | 18 // static |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 instance->second->renderer_data.render_frame_id; | 265 instance->second->renderer_data.render_frame_id; |
| 266 instance_data[i].document_url = | 266 instance_data[i].document_url = |
| 267 instance->second->renderer_data.document_url; | 267 instance->second->renderer_data.document_url; |
| 268 ++instance; | 268 ++instance; |
| 269 ++i; | 269 ++i; |
| 270 } | 270 } |
| 271 on_keepalive_callback_.Run(instance_data, profile_data_directory_); | 271 on_keepalive_callback_.Run(instance_data, profile_data_directory_); |
| 272 } | 272 } |
| 273 | 273 |
| 274 } // namespace content | 274 } // namespace content |
| OLD | NEW |