| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 virtual WebLayer* platformLayer() const { return 0; } | 46 virtual WebLayer* platformLayer() const { return 0; } |
| 47 virtual v8::Local<v8::Object> scriptableObject(v8::Isolate*) { return v8::Lo
cal<v8::Object>(); } | 47 virtual v8::Local<v8::Object> scriptableObject(v8::Isolate*) { return v8::Lo
cal<v8::Object>(); } |
| 48 virtual bool getFormValue(String&) { return false; } | 48 virtual bool getFormValue(String&) { return false; } |
| 49 virtual bool wantsWheelEvents() { return false; } | 49 virtual bool wantsWheelEvents() { return false; } |
| 50 virtual bool supportsKeyboardFocus() const { return false; } | 50 virtual bool supportsKeyboardFocus() const { return false; } |
| 51 virtual bool supportsInputMethod() const { return false; } | 51 virtual bool supportsInputMethod() const { return false; } |
| 52 virtual bool canProcessDrag() const { return false; } | 52 virtual bool canProcessDrag() const { return false; } |
| 53 | 53 |
| 54 virtual void didReceiveResponse(const ResourceResponse&) { } | 54 virtual void didReceiveResponse(const ResourceResponse&) { } |
| 55 virtual void didReceiveData(const char*, int) { } | 55 virtual void didReceiveData(const char*, int) { } |
| 56 virtual void didFinishLoading() { } | |
| 57 virtual void didFailLoading(const ResourceError&) { } | |
| 58 | 56 |
| 59 virtual void layoutIfNeeded() { } | 57 virtual void layoutIfNeeded() { } |
| 60 virtual void invalidatePaintIfNeeded() { } | 58 virtual void invalidatePaintIfNeeded() { } |
| 61 | 59 |
| 62 #if ENABLE(OILPAN) | 60 #if ENABLE(OILPAN) |
| 63 virtual LocalFrame* pluginFrame() const { return nullptr; } | 61 virtual LocalFrame* pluginFrame() const { return nullptr; } |
| 64 virtual void shouldDisposePlugin() { } | 62 virtual void shouldDisposePlugin() { } |
| 65 #endif | 63 #endif |
| 66 | 64 |
| 67 protected: | 65 protected: |
| 68 PluginView() : Widget() { } | 66 PluginView() : Widget() { } |
| 69 }; | 67 }; |
| 70 | 68 |
| 71 DEFINE_TYPE_CASTS(PluginView, Widget, widget, widget->isPluginView(), widget.isP
luginView()); | 69 DEFINE_TYPE_CASTS(PluginView, Widget, widget, widget->isPluginView(), widget.isP
luginView()); |
| 72 | 70 |
| 73 } // namespace blink | 71 } // namespace blink |
| 74 | 72 |
| 75 #endif // PluginView_h | 73 #endif // PluginView_h |
| OLD | NEW |