| Index: chrome/test/base/module_system_test.cc
|
| ===================================================================
|
| --- chrome/test/base/module_system_test.cc (revision 181040)
|
| +++ chrome/test/base/module_system_test.cc (working copy)
|
| @@ -57,13 +57,13 @@
|
| StringSourceMap() {}
|
| virtual ~StringSourceMap() {}
|
|
|
| - v8::Handle<v8::Value> GetSource(const std::string& name) OVERRIDE {
|
| + virtual v8::Handle<v8::Value> GetSource(const std::string& name) OVERRIDE {
|
| if (source_map_.count(name) == 0)
|
| return v8::Undefined();
|
| return v8::String::New(source_map_[name].c_str());
|
| }
|
|
|
| - bool Contains(const std::string& name) OVERRIDE {
|
| + virtual bool Contains(const std::string& name) OVERRIDE {
|
| return source_map_.count(name);
|
| }
|
|
|
| @@ -78,7 +78,7 @@
|
|
|
| class FailsOnException : public ModuleSystem::ExceptionHandler {
|
| public:
|
| - virtual void HandleUncaughtException() {
|
| + virtual void HandleUncaughtException() OVERRIDE {
|
| FAIL();
|
| }
|
| };
|
|
|