HomeSort by relevance Sort by last modified time
    Searched refs:WebEditCommand (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebEditCommand.cpp 27 #include "WebEditCommand.h"
37 PassRefPtr<WebEditCommand> WebEditCommand::create(PassRefPtr<WebCore::EditCommand> command)
39 return adoptRef(new WebEditCommand(command, generateCommandID()));
WebEditCommand.h 35 class WebEditCommand : public RefCounted<WebEditCommand> {
37 static PassRefPtr<WebEditCommand> create(PassRefPtr<WebCore::EditCommand>);
43 WebEditCommand(PassRefPtr<WebCore::EditCommand> command, uint64_t commandID)
WebPage.h 45 #include "WebEditCommand.h"
177 WebEditCommand* webEditCommand(uint64_t);
178 void addWebEditCommand(uint64_t, WebEditCommand*);
604 HashMap<uint64_t, RefPtr<WebEditCommand> > m_editCommandMap;
WebPage.cpp     [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 101 @interface WebEditCommand : NSObject
106 + (WebEditCommand *)commandWithEditCommand:(PassRefPtr<EditCommand>)command;
111 @implementation WebEditCommand
132 if (WebCoreObjCScheduleDeallocateOnMainThread([WebEditCommand class], self))
145 + (WebEditCommand *)commandWithEditCommand:(PassRefPtr<EditCommand>)command
147 return [[[WebEditCommand alloc] initWithEditCommand:command] autorelease];
170 ASSERT([arg isKindOfClass:[WebEditCommand class]]);
176 ASSERT([arg isKindOfClass:[WebEditCommand class]]);
538 WebEditCommand *command = [WebEditCommand commandWithEditCommand:cmd]
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 230 RefPtr<WebEditCommand> webCommand = WebEditCommand::create(command);

Completed in 162 milliseconds