Commit f82bec68 authored by jsbell@chromium.org's avatar jsbell@chromium.org

Use Blink-style method casing for EndOfScopeTask::run()

I guess we're all so used to looking at Chromium's
base::Callback::Run() that no-one noticed. Oops!

R=haraken@chromium.org

Review URL: https://codereview.chromium.org/724953002

git-svn-id: svn://svn.chromium.org/blink/trunk@185330 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 7a10493b
......@@ -259,7 +259,7 @@ void V8PerIsolateData::runEndOfScopeTasks()
Vector<OwnPtr<EndOfScopeTask>> tasks;
tasks.swap(m_endOfScopeTasks);
for (const auto& task : tasks)
task->Run();
task->run();
ASSERT(m_endOfScopeTasks.isEmpty());
}
......
......@@ -50,7 +50,7 @@ public:
class EndOfScopeTask {
public:
virtual ~EndOfScopeTask() { }
virtual void Run() = 0;
virtual void run() = 0;
};
static v8::Isolate* initialize();
......
......@@ -68,7 +68,7 @@ public:
return adoptPtr(new DeactivateTransactionTask(transaction));
}
void Run() override
void run() override
{
m_transaction->setActive(false);
m_transaction.clear();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment