Index: chrome/browser/metrics/metrics_log.cc |
=================================================================== |
--- chrome/browser/metrics/metrics_log.cc (revision 69765) |
+++ chrome/browser/metrics/metrics_log.cc (working copy) |
@@ -25,7 +25,6 @@ |
#include "chrome/common/logging_chrome.h" |
#include "chrome/common/pref_names.h" |
#include "googleurl/src/gurl.h" |
-#include "webkit/plugins/npapi/webplugininfo.h" |
#define OPEN_ELEMENT_FOR_SCOPE(name) ScopedElement scoped_element(this, name) |
@@ -238,13 +237,12 @@ |
} |
void MetricsLog::WritePluginList( |
- const std::vector<webkit::npapi::WebPluginInfo>& plugin_list) { |
+ const std::vector<WebPluginInfo>& plugin_list) { |
DCHECK(!locked_); |
OPEN_ELEMENT_FOR_SCOPE("plugins"); |
- for (std::vector<webkit::npapi::WebPluginInfo>::const_iterator iter = |
- plugin_list.begin(); |
+ for (std::vector<WebPluginInfo>::const_iterator iter = plugin_list.begin(); |
iter != plugin_list.end(); ++iter) { |
OPEN_ELEMENT_FOR_SCOPE("plugin"); |
@@ -264,7 +262,7 @@ |
} |
void MetricsLog::RecordEnvironment( |
- const std::vector<webkit::npapi::WebPluginInfo>& plugin_list, |
+ const std::vector<WebPluginInfo>& plugin_list, |
const DictionaryValue* profile_metrics) { |
DCHECK(!locked_); |