OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CSSImageValue
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageValue.cpp
22
#include "core/css/
CSSImageValue
.h"
35
CSSImageValue
::
CSSImageValue
(const String& url)
42
CSSImageValue
::
CSSImageValue
(const String& url, StyleImage* image)
50
CSSImageValue
::~
CSSImageValue
()
54
StyleImage*
CSSImageValue
::cachedOrPendingImage()
62
StyleFetchedImage*
CSSImageValue
::cachedImage(ResourceFetcher* loader, const ResourceLoaderOptions& options)
77
bool
CSSImageValue
::hasFailedOrCanceledSubresources() cons
[
all
...]
CSSImageValue.h
35
class
CSSImageValue
: public CSSValue {
37
static PassRefPtr<
CSSImageValue
> create(const String& url) { return adoptRef(new
CSSImageValue
(url)); }
38
static PassRefPtr<
CSSImageValue
> create(const String& url, StyleImage* image) { return adoptRef(new
CSSImageValue
(url, image)); }
39
~
CSSImageValue
();
54
bool equals(const
CSSImageValue
&) const;
61
explicit
CSSImageValue
(const String& url);
62
CSSImageValue
(const String& url, StyleImage*);
70
inline
CSSImageValue
* toCSSImageValue(CSSValue* value
[
all
...]
Completed in 946 milliseconds