Chromium Code Reviews| Index: Source/core/loader/EmptyClients.h |
| diff --git a/Source/core/loader/EmptyClients.h b/Source/core/loader/EmptyClients.h |
| index 48c24ae4630e50699f7cb6a73e996aa724c51f85..dc07a6e6fbfb642db1675c61cece9326f066a344 100644 |
| --- a/Source/core/loader/EmptyClients.h |
| +++ b/Source/core/loader/EmptyClients.h |
| @@ -233,7 +233,8 @@ public: |
| virtual void didDispatchPingLoader(const KURL&) OVERRIDE { } |
| virtual void selectorMatchChanged(const Vector<String>&, const Vector<String>&) OVERRIDE { } |
| virtual PassRefPtr<Frame> createFrame(const KURL&, const String&, const String&, HTMLFrameOwnerElement*) OVERRIDE; |
| - virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool) OVERRIDE; |
| + virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const OVERRIDE { return false; } |
| + virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool, bool = false) OVERRIDE; |
|
eseidel
2013/11/18 22:26:45
Bools as arguments are sad-panda. Enums are much
wjmaclean
2013/11/25 17:51:56
Sad-panda happy now ... fixed. :-)
|
| virtual PassRefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL&, const Vector<String>&, const Vector<String>&) OVERRIDE; |
| virtual ObjectContentType objectContentType(const KURL&, const String&, bool) OVERRIDE { return ObjectContentType(); } |