Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv ed. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv ed. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 116 Restarting, | 116 Restarting, |
| 117 RestartingWithPendingMouseClick, | 117 RestartingWithPendingMouseClick, |
| 118 Playing | 118 Playing |
| 119 }; | 119 }; |
| 120 DisplayState displayState() const { return m_displayState; } | 120 DisplayState displayState() const { return m_displayState; } |
| 121 void setDisplayState(DisplayState state) { m_displayState = state; } | 121 void setDisplayState(DisplayState state) { m_displayState = state; } |
| 122 const String loadedMimeType() const; | 122 const String loadedMimeType() const; |
| 123 bool loadPlugin(const KURL&, const String& mimeType, const Vector<String>& p aramNames, const Vector<String>& paramValues, bool useFallback); | 123 bool loadPlugin(const KURL&, const String& mimeType, const Vector<String>& p aramNames, const Vector<String>& paramValues, bool useFallback); |
| 124 bool pluginIsLoadable(const KURL&, const String& mimeType); | 124 bool pluginIsLoadable(const KURL&, const String& mimeType); |
| 125 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType) ; | 125 bool wouldLoadAsNetscapePlugin(const String& url, const String& serviceType) ; |
| 126 bool canHandleInputMethod() const; | |
|
tkent
2013/12/10 07:22:57
This function is not called.
kochi
2013/12/10 08:20:56
Oops, removed.
| |
| 126 | 127 |
| 127 mutable RefPtr<SharedPersistent<v8::Object> > m_pluginWrapper; | 128 mutable RefPtr<SharedPersistent<v8::Object> > m_pluginWrapper; |
| 128 NPObject* m_NPObject; | 129 NPObject* m_NPObject; |
| 129 bool m_isCapturingMouseEvents; | 130 bool m_isCapturingMouseEvents; |
| 130 bool m_inBeforeLoadEventHandler; | 131 bool m_inBeforeLoadEventHandler; |
| 131 bool m_needsWidgetUpdate; | 132 bool m_needsWidgetUpdate; |
| 132 bool m_shouldPreferPlugInsForImages; | 133 bool m_shouldPreferPlugInsForImages; |
| 133 DisplayState m_displayState; | 134 DisplayState m_displayState; |
| 134 }; | 135 }; |
| 135 | 136 |
| 136 DEFINE_NODE_TYPE_CASTS(HTMLPlugInElement, isPluginElement()); | 137 DEFINE_NODE_TYPE_CASTS(HTMLPlugInElement, isPluginElement()); |
| 137 | 138 |
| 138 } // namespace WebCore | 139 } // namespace WebCore |
| 139 | 140 |
| 140 #endif // HTMLPlugInElement_h | 141 #endif // HTMLPlugInElement_h |
| OLD | NEW |