| Index: content/browser/geolocation/geolocation_provider_impl_unittest.cc
|
| diff --git a/content/browser/geolocation/geolocation_provider_impl_unittest.cc b/content/browser/geolocation/geolocation_provider_impl_unittest.cc
|
| index f201f48e842241d7866c167feb49926dc97369ef..685818b8279aa8404db55d1a8f317998ec929936 100644
|
| --- a/content/browser/geolocation/geolocation_provider_impl_unittest.cc
|
| +++ b/content/browser/geolocation/geolocation_provider_impl_unittest.cc
|
| @@ -78,8 +78,8 @@ class GeopositionEqMatcher
|
| explicit GeopositionEqMatcher(const Geoposition& expected)
|
| : expected_(expected) {}
|
|
|
| - virtual bool MatchAndExplain(const Geoposition& actual,
|
| - MatchResultListener* listener) const override {
|
| + bool MatchAndExplain(const Geoposition& actual,
|
| + MatchResultListener* listener) const override {
|
| return actual.latitude == expected_.latitude &&
|
| actual.longitude == expected_.longitude &&
|
| actual.altitude == expected_.altitude &&
|
| @@ -92,11 +92,11 @@ class GeopositionEqMatcher
|
| actual.error_message == expected_.error_message;
|
| }
|
|
|
| - virtual void DescribeTo(::std::ostream* os) const override {
|
| + void DescribeTo(::std::ostream* os) const override {
|
| *os << "which matches the expected position";
|
| }
|
|
|
| - virtual void DescribeNegationTo(::std::ostream* os) const override {
|
| + void DescribeNegationTo(::std::ostream* os) const override {
|
| *os << "which does not match the expected position";
|
| }
|
|
|
|
|