| Index: android_webview/browser/command_line_helper.cc
|
| diff --git a/android_webview/browser/command_line_helper.cc b/android_webview/browser/command_line_helper.cc
|
| index 29afae050050ed8f6fd0f7bd6cb6b2ab0f50a816..af1e50a412a6cfa87631a6c6b0e47d413355094a 100644
|
| --- a/android_webview/browser/command_line_helper.cc
|
| +++ b/android_webview/browser/command_line_helper.cc
|
| @@ -9,6 +9,7 @@
|
| #include "base/command_line.h"
|
| #include "base/feature_list.h"
|
| #include "base/stl_util.h"
|
| +#include "base/strings/string_piece.h"
|
| #include "base/strings/string_util.h"
|
| #include "content/public/common/content_switches.h"
|
|
|
| @@ -34,9 +35,9 @@ void AddFeatureToList(base::CommandLine& command_line,
|
| return;
|
| }
|
|
|
| - vector<string> features =
|
| + vector<base::StringPiece> features =
|
| base::FeatureList::SplitFeatureListString(features_list);
|
| - vector<string> other_features =
|
| + vector<base::StringPiece> other_features =
|
| base::FeatureList::SplitFeatureListString(other_features_list);
|
|
|
| if (!base::ContainsValue(features, feature_name) &&
|
|
|