| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, cons
t WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisibl
e) override { } | 57 void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, cons
t WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisibl
e) override { } |
| 58 void updateFocus(bool, WebFocusType) override { } | 58 void updateFocus(bool, WebFocusType) override { } |
| 59 void updateVisibility(bool) override { } | 59 void updateVisibility(bool) override { } |
| 60 bool acceptsInputEvents() override { return true; } | 60 bool acceptsInputEvents() override { return true; } |
| 61 WebInputEventResult handleInputEvent(const WebInputEvent&, WebCursorInfo&) o
verride { return WebInputEventResult::NotHandled; } | 61 WebInputEventResult handleInputEvent(const WebInputEvent&, WebCursorInfo&) o
verride { return WebInputEventResult::NotHandled; } |
| 62 bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperat
ionsMask, const WebPoint& position, const WebPoint& screenPosition) override { r
eturn false; } | 62 bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperat
ionsMask, const WebPoint& position, const WebPoint& screenPosition) override { r
eturn false; } |
| 63 void didReceiveResponse(const WebURLResponse&) override { } | 63 void didReceiveResponse(const WebURLResponse&) override { } |
| 64 void didReceiveData(const char* data, int dataLength) override { } | 64 void didReceiveData(const char* data, int dataLength) override { } |
| 65 void didFinishLoading() override { } | 65 void didFinishLoading() override { } |
| 66 void didFailLoading(const WebURLError&) override { } | 66 void didFailLoading(const WebURLError&) override { } |
| 67 void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) override
{ } | |
| 68 void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebUR
LError&) override { } | |
| 69 bool isPlaceholder() override { return false; } | 67 bool isPlaceholder() override { return false; } |
| 70 | 68 |
| 71 protected: | 69 protected: |
| 72 virtual ~FakeWebPlugin(); | 70 virtual ~FakeWebPlugin(); |
| 73 | 71 |
| 74 WebPluginContainer* container() const { return m_container; } | 72 WebPluginContainer* container() const { return m_container; } |
| 75 | 73 |
| 76 private: | 74 private: |
| 77 WebFrame* m_frame; | 75 WebFrame* m_frame; |
| 78 WebPluginContainer* m_container; | 76 WebPluginContainer* m_container; |
| 79 }; | 77 }; |
| 80 | 78 |
| 81 } // namespace blink | 79 } // namespace blink |
| 82 | 80 |
| 83 #endif // FakeWebPlugin_h | 81 #endif // FakeWebPlugin_h |
| OLD | NEW |