Home
last modified time | relevance | path

Searched refs:executeEditCommand (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
DWebPlugin.h131 virtual bool executeEditCommand(const WebString& name) { return false; } in executeEditCommand() function
132 virtual bool executeEditCommand(const WebString& name, const WebString& value) { return false; } in executeEditCommand() function
/external/chromium_org/third_party/WebKit/Source/web/
DWebPluginContainerImpl.h147 bool executeEditCommand(const WebString& name);
148 bool executeEditCommand(const WebString& name, const WebString& value);
DWebPluginContainerImpl.cpp347 bool WebPluginContainerImpl::executeEditCommand(const WebString& name) in executeEditCommand() function in blink::WebPluginContainerImpl
349 if (m_webPlugin->executeEditCommand(name)) in executeEditCommand()
359 bool WebPluginContainerImpl::executeEditCommand(const WebString& name, const WebString& value) in executeEditCommand() function in blink::WebPluginContainerImpl
361 return m_webPlugin->executeEditCommand(name, value); in executeEditCommand()
DWebFrameImpl.cpp1164 if (pluginContainer && pluginContainer->executeEditCommand(name)) in executeCommand()
1199 if (pluginContainer && pluginContainer->executeEditCommand(name, value)) in executeCommand()
/external/chromium_org/content/renderer/browser_plugin/
Dbrowser_plugin.h189 virtual bool executeEditCommand(const blink::WebString& name) OVERRIDE; in NON_EXPORTED_BASE()
190 virtual bool executeEditCommand(const blink::WebString& name, in NON_EXPORTED_BASE()
Dbrowser_plugin.cc1327 bool BrowserPlugin::executeEditCommand(const blink::WebString& name) { in executeEditCommand() function in content::BrowserPlugin
1337 bool BrowserPlugin::executeEditCommand(const blink::WebString& name, in executeEditCommand() function in content::BrowserPlugin