Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2658)

Unified Diff: Source/modules/indexeddb/IDBRequestTest.cpp

Issue 332183002: Oilpan: fix build after r176183 (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/MainThreadTaskRunnerTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBRequestTest.cpp
diff --git a/Source/modules/indexeddb/IDBRequestTest.cpp b/Source/modules/indexeddb/IDBRequestTest.cpp
index 5e130a3ab713f3c2bb662105bf80c0f6347dda56..00d9f764e07c979c2d1f92a2d328a8e0d899cc80 100644
--- a/Source/modules/indexeddb/IDBRequestTest.cpp
+++ b/Source/modules/indexeddb/IDBRequestTest.cpp
@@ -67,14 +67,13 @@ public:
ExecutionContext::trace(visitor);
}
+ virtual void reportBlockedScriptExecutionToInspector(const String& directiveText) OVERRIDE { }
+ virtual SecurityContext& securityContext() { return *this; }
+
#if !ENABLE(OILPAN)
using RefCounted<NullExecutionContext>::ref;
using RefCounted<NullExecutionContext>::deref;
- virtual void reportBlockedScriptExecutionToInspector(const String& directiveText) OVERRIDE { }
-
- virtual SecurityContext& securityContext() { return *this; }
-
virtual void refExecutionContext() OVERRIDE { ref(); }
virtual void derefExecutionContext() OVERRIDE { deref(); }
#endif
« no previous file with comments | « Source/core/dom/MainThreadTaskRunnerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698