| Index: chrome/browser/sync/test/integration/dictionary_helper.cc
 | 
| diff --git a/chrome/browser/sync/test/integration/dictionary_helper.cc b/chrome/browser/sync/test/integration/dictionary_helper.cc
 | 
| index 2d43a5638edf9e8ae6d6090835771acc66bdebc8..070b2d8a3491f2e395f0a50ef455f5c33af24f03 100644
 | 
| --- a/chrome/browser/sync/test/integration/dictionary_helper.cc
 | 
| +++ b/chrome/browser/sync/test/integration/dictionary_helper.cc
 | 
| @@ -106,8 +106,8 @@ class DictionaryMatchStatusChecker : public MultiClientStatusChangeChecker {
 | 
|    DictionaryMatchStatusChecker();
 | 
|    virtual ~DictionaryMatchStatusChecker();
 | 
|  
 | 
| -  virtual bool IsExitConditionSatisfied() OVERRIDE;
 | 
| -  virtual std::string GetDebugMessage() const OVERRIDE;
 | 
| +  virtual bool IsExitConditionSatisfied() override;
 | 
| +  virtual std::string GetDebugMessage() const override;
 | 
|  };
 | 
|  
 | 
|  DictionaryMatchStatusChecker::DictionaryMatchStatusChecker()
 | 
| @@ -131,8 +131,8 @@ class NumDictionaryEntriesStatusChecker
 | 
|    NumDictionaryEntriesStatusChecker(int index, size_t num_words);
 | 
|    virtual ~NumDictionaryEntriesStatusChecker();
 | 
|  
 | 
| -  virtual bool IsExitConditionSatisfied() OVERRIDE;
 | 
| -  virtual std::string GetDebugMessage() const OVERRIDE;
 | 
| +  virtual bool IsExitConditionSatisfied() override;
 | 
| +  virtual std::string GetDebugMessage() const override;
 | 
|   private:
 | 
|    int index_;
 | 
|    size_t num_words_;
 | 
| 
 |