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

Unified Diff: Source/core/loader/EmptyClients.h

Issue 18822004: Extension Error Piping - Blink: WebKit Side (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Use v8 Contexts Created 7 years, 5 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 | « no previous file | Source/core/page/Chrome.h » ('j') | Source/core/page/Chrome.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/EmptyClients.h
diff --git a/Source/core/loader/EmptyClients.h b/Source/core/loader/EmptyClients.h
index b36f1fc86c08c2740e770e04c3ecec57dfbb98d5..ddd8340ec9b938ea3bcdfb9c8f9b73c873c9f6fc 100644
--- a/Source/core/loader/EmptyClients.h
+++ b/Source/core/loader/EmptyClients.h
@@ -104,7 +104,8 @@ public:
virtual void setResizable(bool) OVERRIDE { }
- virtual void addMessageToConsole(MessageSource, MessageLevel, const String&, unsigned, const String&) OVERRIDE { }
+ virtual bool shouldReportDetailedMessage(v8::Handle<v8::Context>, 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 +162,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 { }
« no previous file with comments | « no previous file | Source/core/page/Chrome.h » ('j') | Source/core/page/Chrome.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698