| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index 50064fb5e0a513bb532e02e2bb0c39ccde5a426c..a956d00c50fb119e58f3dfda3aaa367ce239bb12 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -470,9 +470,9 @@ content::PepperPluginInfo* ChromeContentClient::FindMostRecentPlugin(
|
| Version version_x(x->version);
|
| Version version_y(y->version);
|
| DCHECK(version_x.IsValid() && version_y.IsValid());
|
| - if (version_x.Equals(version_y))
|
| + if (version_x == version_y)
|
| return !x->is_debug && y->is_debug;
|
| - return version_x.IsOlderThan(y->version);
|
| + return version_x < version_y;
|
| });
|
| return it != plugins.end() ? *it : nullptr;
|
| }
|
|
|