OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ResourceProgressEvent
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ResourceProgressEvent.cpp
28
#include "core/dom/
ResourceProgressEvent
.h"
32
ResourceProgressEvent
::
ResourceProgressEvent
()
37
ResourceProgressEvent
::
ResourceProgressEvent
(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
44
const String&
ResourceProgressEvent
::url() const
49
const AtomicString&
ResourceProgressEvent
::interfaceName() const
ResourceProgressEvent.h
38
//
ResourceProgressEvent
is a non-standard class that is simply a ProgressEvent
45
class
ResourceProgressEvent
: public ProgressEvent {
47
static PassRefPtr<
ResourceProgressEvent
> create()
49
return adoptRef(new
ResourceProgressEvent
);
51
static PassRefPtr<
ResourceProgressEvent
> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
53
return adoptRef(new
ResourceProgressEvent
(type, lengthComputable, loaded, total, url));
61
ResourceProgressEvent
();
62
ResourceProgressEvent
(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
Completed in 2247 milliseconds