| Index: chrome/browser/local_discovery/privet_url_fetcher_unittest.cc
|
| diff --git a/chrome/browser/local_discovery/privet_url_fetcher_unittest.cc b/chrome/browser/local_discovery/privet_url_fetcher_unittest.cc
|
| index 2b1dacaa65e098e8d03e9ed37a9e6688c7652203..467e1d8b94645962f96b0db94b0f8f7228bff935 100644
|
| --- a/chrome/browser/local_discovery/privet_url_fetcher_unittest.cc
|
| +++ b/chrome/browser/local_discovery/privet_url_fetcher_unittest.cc
|
| @@ -28,19 +28,19 @@ class MockPrivetURLFetcherDelegate : public PrivetURLFetcher::Delegate {
|
| MockPrivetURLFetcherDelegate() : raw_mode_(false) {
|
| }
|
|
|
| - virtual ~MockPrivetURLFetcherDelegate() {
|
| + ~MockPrivetURLFetcherDelegate() override {
|
| }
|
|
|
| - virtual void OnError(PrivetURLFetcher* fetcher,
|
| - PrivetURLFetcher::ErrorType error) override {
|
| + void OnError(PrivetURLFetcher* fetcher,
|
| + PrivetURLFetcher::ErrorType error) override {
|
| OnErrorInternal(error);
|
| }
|
|
|
| MOCK_METHOD1(OnErrorInternal, void(PrivetURLFetcher::ErrorType error));
|
|
|
| - virtual void OnParsedJson(PrivetURLFetcher* fetcher,
|
| - const base::DictionaryValue& value,
|
| - bool has_error) override {
|
| + void OnParsedJson(PrivetURLFetcher* fetcher,
|
| + const base::DictionaryValue& value,
|
| + bool has_error) override {
|
| saved_value_.reset(value.DeepCopy());
|
| OnParsedJsonInternal(has_error);
|
| }
|
|
|