Index: Source/core/loader/EmptyClients.h |
diff --git a/Source/core/loader/EmptyClients.h b/Source/core/loader/EmptyClients.h |
index b36f1fc86c08c2740e770e04c3ecec57dfbb98d5..869e877f615417970b3e9b0bbf2acdc31564121c 100644 |
--- a/Source/core/loader/EmptyClients.h |
+++ b/Source/core/loader/EmptyClients.h |
@@ -104,7 +104,9 @@ public: |
virtual void setResizable(bool) OVERRIDE { } |
- virtual void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, const String&) OVERRIDE { } |
+ virtual bool shouldReportDetailedMessageForContext(v8::Handle<v8::Context>) OVERRIDE { return false; } |
+ virtual bool shouldReportDetailedMessageForURL(const String&) OVERRIDE { return false; } |
+ virtual void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, const String&, const String&) OVERRIDE { } |
virtual bool canRunBeforeUnloadConfirmPanel() OVERRIDE { return false; } |
virtual bool runBeforeUnloadConfirmPanel(const String&, Frame*) OVERRIDE { return true; } |
@@ -161,11 +163,11 @@ public: |
virtual void scheduleCompositingLayerFlush() OVERRIDE { } |
virtual void needTouchEvents(bool) OVERRIDE { } |
- |
+ |
virtual void numWheelEventHandlersChanged(unsigned) OVERRIDE { } |
- |
+ |
virtual bool shouldRubberBandInDirection(WebCore::ScrollDirection) const OVERRIDE { return false; } |
- |
+ |
virtual bool isEmptyChromeClient() const OVERRIDE { return true; } |
virtual void didAssociateFormControls(const Vector<RefPtr<Element> >&) OVERRIDE { } |