Index: Source/bindings/v8/V8DOMActivityLogger.h |
diff --git a/Source/bindings/v8/V8DOMActivityLogger.h b/Source/bindings/v8/V8DOMActivityLogger.h |
index 54c653d665bc1083822a656fb78358120700faec..55f28d10d2bd7de22bc3e1c4cdbc7df4fe232165 100644 |
--- a/Source/bindings/v8/V8DOMActivityLogger.h |
+++ b/Source/bindings/v8/V8DOMActivityLogger.h |
@@ -41,7 +41,10 @@ class V8DOMActivityLogger { |
public: |
virtual ~V8DOMActivityLogger() { } |
- virtual void log(const String& apiName, int argc, const v8::Handle<v8::Value>* argv, const String& extraInfo) { } |
+ virtual void logGetter(const String& apiName) { } |
+ virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue) { } |
+ virtual void logSetter(const String& apiName, const v8::Handle<v8::Value>& newValue, const v8::Handle<v8::Value>& oldValue) { } |
+ virtual void logMethod(const String& apiName, int argc, const v8::Handle<v8::Value>* argv) { } |
// Associates a logger with the world identified by worldId (worlId may be 0 |
// identifying the main world). |