OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RemoveOperationDelegate
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/webkit/browser/fileapi/
remove_operation_delegate.h
14
class
RemoveOperationDelegate
: public RecursiveOperationDelegate {
16
RemoveOperationDelegate
(FileSystemContext* file_system_context,
19
virtual ~
RemoveOperationDelegate
();
40
base::WeakPtrFactory<
RemoveOperationDelegate
> weak_factory_;
41
DISALLOW_COPY_AND_ASSIGN(
RemoveOperationDelegate
);
remove_operation_delegate.cc
13
RemoveOperationDelegate
::
RemoveOperationDelegate
(
23
RemoveOperationDelegate
::~
RemoveOperationDelegate
() {}
25
void
RemoveOperationDelegate
::Run() {
27
&
RemoveOperationDelegate
::DidTryRemoveFile, weak_factory_.GetWeakPtr()));
30
void
RemoveOperationDelegate
::RunRecursively() {
34
void
RemoveOperationDelegate
::ProcessFile(const FileSystemURL& url,
38
base::Bind(&
RemoveOperationDelegate
::DidRemoveFile,
42
void
RemoveOperationDelegate
::ProcessDirectory(const FileSystemURL& url
[
all
...]
Completed in 102 milliseconds