Searched defs:commandID (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebEditCommand.h40 uint64_t commandID() const { return m_commandID; } function in class:WebKit::WebEditCommand
43 WebEditCommand(PassRefPtr<WebCore::EditCommand> command, uint64_t commandID) argument
45 , m_commandID(commandID)
H A DWebPage.cpp1611 WebEditCommand* WebPage::webEditCommand(uint64_t commandID) argument
1613 return m_editCommandMap.get(commandID).get();
1616 void WebPage::addWebEditCommand(uint64_t commandID, WebEditCommand* command) argument
1618 m_editCommandMap.set(commandID, command);
1621 void WebPage::removeWebEditCommand(uint64_t commandID) argument
1623 m_editCommandMap.remove(commandID);
1626 void WebPage::unapplyEditCommand(uint64_t commandID) argument
1628 WebEditCommand* command = webEditCommand(commandID);
1635 void WebPage::reapplyEditCommand(uint64_t commandID) argument
1637 WebEditCommand* command = webEditCommand(commandID);
1646 didRemoveEditCommand(uint64_t commandID) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DWebEditCommandProxy.cpp39 WebEditCommandProxy::WebEditCommandProxy(uint64_t commandID, WebCore::EditAction editAction, WebPageProxy* page) argument
40 : m_commandID(commandID)
H A DWebEditCommandProxy.h41 static PassRefPtr<WebEditCommandProxy> create(uint64_t commandID, WebCore::EditAction editAction, WebPageProxy* page) argument
43 return adoptRef(new WebEditCommandProxy(commandID, editAction, page));
47 uint64_t commandID() const { return m_commandID; } function in class:WebKit::WebEditCommandProxy
58 WebEditCommandProxy(uint64_t commandID, WebCore::EditAction, WebPageProxy*);
H A DWebPageProxy.cpp2182 void WebPageProxy::registerEditCommandForUndo(uint64_t commandID, uint32_t editAction) argument
2184 registerEditCommand(WebEditCommandProxy::create(commandID, static_cast<EditAction>(editAction), this), Undo);
2438 process()->send(Messages::WebPage::DidRemoveEditCommand(command->commandID()), m_pageID);
/external/webkit/Tools/MiniBrowser/win/
H A DBrowserWindow.cpp206 LRESULT BrowserWindow::onCommand(int commandID, bool& handled) argument
208 switch (commandID) {

Completed in 92 milliseconds