| Index: chrome/browser/sync/util/sqlite_utils.h
|
| diff --git a/chrome/browser/sync/util/sqlite_utils.h b/chrome/browser/sync/util/sqlite_utils.h
|
| index 4ee5a39bb853f3a3bcfbd09a983c1ef6765fcb4e..8eb219c8cacbf70e7d1aad5361ce3bb02a111bb4 100644
|
| --- a/chrome/browser/sync/util/sqlite_utils.h
|
| +++ b/chrome/browser/sync/util/sqlite_utils.h
|
| @@ -10,6 +10,7 @@
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| +#include "base/compiler_specific.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/string16.h"
|
| #include "base/utf_string_conversions.h"
|
| @@ -154,8 +155,8 @@ class SQLNestedTransaction : public SQLTransaction {
|
| virtual ~SQLNestedTransaction();
|
|
|
| protected:
|
| - virtual int BeginCommand(const char* command);
|
| - virtual int EndCommand(const char* command);
|
| + virtual int BeginCommand(const char* command) OVERRIDE;
|
| + virtual int EndCommand(const char* command) OVERRIDE;
|
|
|
| private:
|
| bool needs_rollback_;
|
|
|