| Index: chrome/browser/sync/test/integration/sync_test.cc
 | 
| diff --git a/chrome/browser/sync/test/integration/sync_test.cc b/chrome/browser/sync/test/integration/sync_test.cc
 | 
| index 948416a44fddd0209bcd3cf21ace2fc9a03b98bd..ddf935def5a8d1bd06c139754b4d6d7091dbabac 100644
 | 
| --- a/chrome/browser/sync/test/integration/sync_test.cc
 | 
| +++ b/chrome/browser/sync/test/integration/sync_test.cc
 | 
| @@ -101,7 +101,7 @@ class SyncServerStatusChecker : public net::URLFetcherDelegate {
 | 
|   public:
 | 
|    SyncServerStatusChecker() : running_(false) {}
 | 
|  
 | 
| -  virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE {
 | 
| +  virtual void OnURLFetchComplete(const net::URLFetcher* source) override {
 | 
|      std::string data;
 | 
|      source->GetResponseAsString(&data);
 | 
|      running_ =
 | 
| @@ -126,11 +126,11 @@ class EncryptionChecker : public SingleClientStatusChangeChecker {
 | 
|    explicit EncryptionChecker(ProfileSyncService* service)
 | 
|        : SingleClientStatusChangeChecker(service) {}
 | 
|  
 | 
| -  virtual bool IsExitConditionSatisfied() OVERRIDE {
 | 
| +  virtual bool IsExitConditionSatisfied() override {
 | 
|      return IsEncryptionComplete(service());
 | 
|    }
 | 
|  
 | 
| -  virtual std::string GetDebugMessage() const OVERRIDE {
 | 
| +  virtual std::string GetDebugMessage() const override {
 | 
|      return "Encryption";
 | 
|    }
 | 
|  };
 | 
| 
 |