| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 class WebPluginContainer; | 41 class WebPluginContainer; |
| 42 class WebURL; | 42 class WebURL; |
| 43 class WebURLResponse; | 43 class WebURLResponse; |
| 44 struct WebPluginParams; | 44 struct WebPluginParams; |
| 45 | 45 |
| 46 class FakeWebPlugin : public WebPlugin { | 46 class FakeWebPlugin : public WebPlugin { |
| 47 public: | 47 public: |
| 48 FakeWebPlugin(WebFrame*, const WebPluginParams&); | 48 FakeWebPlugin(WebFrame*, const WebPluginParams&); |
| 49 | 49 |
| 50 // WebPlugin methods: | 50 // WebPlugin methods: |
| 51 virtual bool initialize(WebPluginContainer*) override; | 51 bool initialize(WebPluginContainer*) override; |
| 52 virtual void destroy() override; | 52 void destroy() override; |
| 53 virtual NPObject* scriptableObject() override { return 0; } | 53 NPObject* scriptableObject() override { return 0; } |
| 54 virtual bool canProcessDrag() const override { return false; } | 54 bool canProcessDrag() const override { return false; } |
| 55 virtual void layoutIfNeeded() override { } | 55 void layoutIfNeeded() override { } |
| 56 virtual void paint(WebCanvas*, const WebRect&) override { } | 56 void paint(WebCanvas*, const WebRect&) override { } |
| 57 virtual void updateGeometry(const WebRect& clientRect, const WebRect& clipRe
ct, const WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool
isVisible) override { } | 57 void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, cons
t WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisibl
e) override { } |
| 58 virtual void updateFocus(bool, WebFocusType) override { } | 58 void updateFocus(bool, WebFocusType) override { } |
| 59 virtual void updateVisibility(bool) override { } | 59 void updateVisibility(bool) override { } |
| 60 virtual bool acceptsInputEvents() override { return true; } | 60 bool acceptsInputEvents() override { return true; } |
| 61 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) override
{ return false; } | 61 bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) override { retur
n false; } |
| 62 virtual bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDr
agOperationsMask, const WebPoint& position, const WebPoint& screenPosition) over
ride { return false; } | 62 bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperat
ionsMask, const WebPoint& position, const WebPoint& screenPosition) override { r
eturn false; } |
| 63 virtual void didReceiveResponse(const WebURLResponse&) override { } | 63 void didReceiveResponse(const WebURLResponse&) override { } |
| 64 virtual void didReceiveData(const char* data, int dataLength) override { } | 64 void didReceiveData(const char* data, int dataLength) override { } |
| 65 virtual void didFinishLoading() override { } | 65 void didFinishLoading() override { } |
| 66 virtual void didFailLoading(const WebURLError&) override { } | 66 void didFailLoading(const WebURLError&) override { } |
| 67 virtual void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) o
verride { } | 67 void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) override
{ } |
| 68 virtual void didFailLoadingFrameRequest(const WebURL&, void* notifyData, con
st WebURLError&) override { } | 68 void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebUR
LError&) override { } |
| 69 virtual bool isPlaceholder() override { return false; } | 69 bool isPlaceholder() override { return false; } |
| 70 | 70 |
| 71 protected: | 71 protected: |
| 72 virtual ~FakeWebPlugin(); | 72 virtual ~FakeWebPlugin(); |
| 73 | 73 |
| 74 private: | 74 private: |
| 75 WebFrame* m_frame; | 75 WebFrame* m_frame; |
| 76 WebPluginContainer* m_container; | 76 WebPluginContainer* m_container; |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace blink | 79 } // namespace blink |
| 80 | 80 |
| 81 #endif // FakeWebPlugin_h | 81 #endif // FakeWebPlugin_h |
| OLD | NEW |