Index: chrome/browser/metrics/metrics_service.cc |
=================================================================== |
--- chrome/browser/metrics/metrics_service.cc (revision 118420) |
+++ chrome/browser/metrics/metrics_service.cc (working copy) |
@@ -177,6 +177,7 @@ |
#include "chrome/common/pref_names.h" |
#include "chrome/common/render_messages.h" |
#include "content/browser/load_notification_details.h" |
+#include "content/public/browser/child_process_data.h" |
#include "content/public/browser/notification_service.h" |
#include "content/public/browser/plugin_service.h" |
#include "content/public/browser/render_process_host.h" |
@@ -196,6 +197,7 @@ |
using base::Time; |
using content::BrowserThread; |
+using content::ChildProcessData; |
using content::PluginService; |
// Check to see that we're being called on only one thread. |
@@ -1335,7 +1337,7 @@ |
int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- content::Details<content::ChildProcessData> child_details(details); |
+ content::Details<ChildProcessData> child_details(details); |
const string16& child_name = child_details->name; |
if (child_process_stats_buffer_.find(child_name) == |