| Index: chrome/browser/plugins/plugin_metadata.cc
|
| diff --git a/chrome/browser/plugins/plugin_metadata.cc b/chrome/browser/plugins/plugin_metadata.cc
|
| index dabc7d11bda28229775a2b0fb9ba398a73a1551a..87b4418a9a0132321e1ae87acbd5a34365bc829a 100644
|
| --- a/chrome/browser/plugins/plugin_metadata.cc
|
| +++ b/chrome/browser/plugins/plugin_metadata.cc
|
| @@ -7,6 +7,7 @@
|
| #include <algorithm>
|
|
|
| #include "base/logging.h"
|
| +#include "base/strings/pattern.h"
|
| #include "base/strings/string_util.h"
|
| #include "content/public/common/webplugininfo.h"
|
|
|
| @@ -73,7 +74,7 @@ bool PluginMetadata::MatchesPlugin(const content::WebPluginInfo& plugin) {
|
| return false;
|
| }
|
|
|
| - return MatchPattern(plugin.name, group_name_matcher_);
|
| + return base::MatchPattern(plugin.name, group_name_matcher_);
|
| }
|
|
|
| // static
|
|
|