Index: third_party/WebKit/Source/modules/webdatabase/DatabaseContext.cpp |
diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseContext.cpp b/third_party/WebKit/Source/modules/webdatabase/DatabaseContext.cpp |
index a03d118e5175235fa9b420ea155cc3aff9837b7e..5214070158524a796791867bece912d6a4f65f9a 100644 |
--- a/third_party/WebKit/Source/modules/webdatabase/DatabaseContext.cpp |
+++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseContext.cpp |
@@ -190,17 +190,17 @@ void DatabaseContext::stopDatabases() |
bool DatabaseContext::allowDatabaseAccess() const |
{ |
- return toDocument(executionContext())->isActive(); |
+ return toDocument(getExecutionContext())->isActive(); |
} |
-SecurityOrigin* DatabaseContext::securityOrigin() const |
+SecurityOrigin* DatabaseContext::getSecurityOrigin() const |
{ |
- return executionContext()->securityOrigin(); |
+ return getExecutionContext()->getSecurityOrigin(); |
} |
bool DatabaseContext::isContextThread() const |
{ |
- return executionContext()->isContextThread(); |
+ return getExecutionContext()->isContextThread(); |
} |
} // namespace blink |