Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / FakeWebPlugin.h
blob2457f4039fc33ce5fc576a5267983d61213be1b6
1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef FakeWebPlugin_h
32 #define FakeWebPlugin_h
34 #include "public/web/WebPlugin.h"
36 namespace blink {
38 class WebDragData;
39 class WebFrame;
40 class WebInputEvent;
41 class WebPluginContainer;
42 class WebURL;
43 class WebURLResponse;
44 struct WebPluginParams;
46 class FakeWebPlugin : public WebPlugin {
47 public:
48 FakeWebPlugin(WebFrame*, const WebPluginParams&);
50 // WebPlugin methods:
51 bool initialize(WebPluginContainer*) override;
52 void destroy() override;
53 NPObject* scriptableObject() override { return 0; }
54 bool canProcessDrag() const override { return false; }
55 void layoutIfNeeded() override { }
56 void paint(WebCanvas*, const WebRect&) override { }
57 void updateGeometry(const WebRect& clientRect, const WebRect& clipRect, const WebRect& windowClipRect, const WebVector<WebRect>& cutOutsRects, bool isVisible) override { }
58 void updateFocus(bool, WebFocusType) override { }
59 void updateVisibility(bool) override { }
60 bool acceptsInputEvents() override { return true; }
61 bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) override { return false; }
62 bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) override { return false; }
63 void didReceiveResponse(const WebURLResponse&) override { }
64 void didReceiveData(const char* data, int dataLength) override { }
65 void didFinishLoading() override { }
66 void didFailLoading(const WebURLError&) override { }
67 void didFinishLoadingFrameRequest(const WebURL&, void* notifyData) override { }
68 void didFailLoadingFrameRequest(const WebURL&, void* notifyData, const WebURLError&) override { }
69 bool isPlaceholder() override { return false; }
71 protected:
72 virtual ~FakeWebPlugin();
74 WebPluginContainer* container() const { return m_container; }
76 private:
77 WebFrame* m_frame;
78 WebPluginContainer* m_container;
81 } // namespace blink
83 #endif // FakeWebPlugin_h