X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Finspector%2FInspectorClient.h;h=c2d3c95d4adf11c0bf5b66d92a9ca09cb00cecf8;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=f75a07acf2f5618cb85c4ea8fe823eca0adcf91c;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/inspector/InspectorClient.h b/src/third_party/WebKit/Source/core/inspector/InspectorClient.h index f75a07a..c2d3c95 100644 --- a/src/third_party/WebKit/Source/core/inspector/InspectorClient.h +++ b/src/third_party/WebKit/Source/core/inspector/InspectorClient.h @@ -30,8 +30,7 @@ #include "core/inspector/InspectorStateClient.h" #include "core/page/ContextMenuProvider.h" #include "wtf/Forward.h" -#include "wtf/HashMap.h" -#include "wtf/HashSet.h" +#include "wtf/PassRefPtr.h" namespace blink { @@ -70,13 +69,16 @@ public: virtual void setShowScrollBottleneckRects(bool) { } virtual void resetScrollAndPageScaleFactor() { } + virtual float minimumPageScaleFactor() { return 1; } + virtual float maximumPageScaleFactor() { return 1; } + virtual void setPageScaleFactor(float) { } virtual void showContextMenu(float x, float y, PassRefPtr) { } - virtual void getAllocatedObjects(HashSet&) { } - virtual void dumpUncountedAllocatedObjects(const HashMap&) { } virtual void dispatchKeyEvent(const PlatformKeyboardEvent&) { } virtual void dispatchMouseEvent(const PlatformMouseEvent&) { } + virtual void resumeStartup() { } + protected: virtual ~InspectorClient() { } };