/external/webkit/Source/WebCore/loader/icon/ |
D | IconLoader.cpp | 48 IconLoader::IconLoader(Frame* frame) in IconLoader() function in WebCore::IconLoader 54 PassOwnPtr<IconLoader> IconLoader::create(Frame* frame) in create() 56 return adoptPtr(new IconLoader(frame)); in create() 59 IconLoader::~IconLoader() in ~IconLoader() 63 void IconLoader::startLoading() in startLoading() 85 void IconLoader::stopLoading() in stopLoading() 90 void IconLoader::didReceiveResponse(SubresourceLoader* resourceLoader, const ResourceResponse& resp… in didReceiveResponse() 103 void IconLoader::didReceiveData(SubresourceLoader* unusedLoader, const char*, int unusedSize) in didReceiveData() 112 void IconLoader::didFail(SubresourceLoader* resourceLoader, const ResourceError&) in didFail() 127 void IconLoader::didReceiveAuthenticationChallenge(SubresourceLoader*, const AuthenticationChalleng… in didReceiveAuthenticationChallenge() [all …]
|
D | IconLoader.h | 40 class IconLoader : private SubresourceLoaderClient { 41 WTF_MAKE_NONCOPYABLE(IconLoader); WTF_MAKE_FAST_ALLOCATED; 43 static PassOwnPtr<IconLoader> create(Frame*); 44 ~IconLoader(); 50 IconLoader(Frame*);
|
/external/chromium/chrome/browser/ |
D | icon_loader.cc | 15 IconLoader::IconLoader(const IconGroupID& group, IconSize size, in IconLoader() function in IconLoader 24 IconLoader::~IconLoader() { in ~IconLoader() 27 void IconLoader::Start() { in Start() 36 NewRunnableMethod(this, &IconLoader::ReadIcon)); in Start() 39 void IconLoader::NotifyDelegate() { in NotifyDelegate()
|
D | icon_loader.h | 38 class IconLoader : public base::RefCountedThreadSafe<IconLoader> { 51 virtual bool OnImageLoaded(IconLoader* source, gfx::Image* result) = 0; 57 IconLoader(const IconGroupID& group, IconSize size, Delegate* delegate); 63 friend class base::RefCountedThreadSafe<IconLoader>; 65 virtual ~IconLoader(); 91 DISALLOW_COPY_AND_ASSIGN(IconLoader);
|
D | icon_manager.h | 59 class IconManager : public IconLoader::Delegate, 71 IconLoader::IconSize size); 83 IconLoader::IconSize size, 88 virtual bool OnImageLoaded(IconLoader* source, gfx::Image* result); 96 CacheKey(const IconGroupID& group, IconLoader::IconSize size); 102 IconLoader::IconSize size; 112 typedef std::map<IconLoader*, ClientRequest> ClientRequests;
|
D | icon_loader_linux.cc | 18 static int SizeToInt(IconLoader::IconSize size) { in SizeToInt() 20 if (size == IconLoader::NORMAL) in SizeToInt() 22 else if (size == IconLoader::SMALL) in SizeToInt() 28 void IconLoader::ReadIcon() { in ReadIcon() 32 NewRunnableMethod(this, &IconLoader::ParseIcon)); in ReadIcon() 35 void IconLoader::ParseIcon() { in ParseIcon()
|
D | icon_manager.cc | 16 IconLoader::IconSize size; 27 IconLoader::IconSize size) { in LookupIcon() 38 IconLoader::IconSize size, in LoadIcon() 45 IconLoader* loader = new IconLoader(group, size, this); in LoadIcon() 55 bool IconManager::OnImageLoaded(IconLoader* source, gfx::Image* result) { in OnImageLoaded() 94 IconLoader::IconSize size) in CacheKey()
|
D | icon_loader_win.cc | 15 void IconLoader::ReadIcon() { in ReadIcon() 18 case IconLoader::SMALL: in ReadIcon() 21 case IconLoader::NORMAL: in ReadIcon() 24 case IconLoader::LARGE: in ReadIcon() 49 NewRunnableMethod(this, &IconLoader::NotifyDelegate)); in ReadIcon()
|
D | icon_loader_mac.mm | 15 void IconLoader::ReadIcon() { 25 NewRunnableMethod(this, &IconLoader::NotifyDelegate));
|
/external/chromium/chrome/browser/ui/webui/options/ |
D | extension_settings_handler.h | 80 class IconLoader : public base::RefCountedThreadSafe<IconLoader> { 82 explicit IconLoader(ExtensionsDOMHandler* handler); 236 scoped_refptr<IconLoader> icon_loader_;
|
D | extension_settings_handler.cc | 205 ExtensionsDOMHandler::IconLoader::IconLoader(ExtensionsDOMHandler* handler) in IconLoader() function in ExtensionsDOMHandler::IconLoader 209 void ExtensionsDOMHandler::IconLoader::LoadIcons( in LoadIcons() 214 &IconLoader::LoadIconsOnFileThread, icons, json)); in LoadIcons() 217 void ExtensionsDOMHandler::IconLoader::Cancel() { in Cancel() 221 void ExtensionsDOMHandler::IconLoader::LoadIconsOnFileThread( in LoadIconsOnFileThread() 280 NewRunnableMethod(this, &IconLoader::ReportResultOnUIThread, in LoadIconsOnFileThread() 284 void ExtensionsDOMHandler::IconLoader::ReportResultOnUIThread( in ReportResultOnUIThread() 392 icon_loader_ = new IconLoader(this); in HandleRequestExtensionsData()
|
/external/chromium/chrome/browser/ui/webui/ |
D | fileicon_source.cc | 44 gfx::Image* icon = im->LookupIcon(escaped_filepath, IconLoader::NORMAL); in StartDataRequest() 54 IconLoader::NORMAL, in StartDataRequest()
|
D | downloads_dom_handler.cc | 162 IconLoader::NORMAL); in HandleDrag()
|
/external/chromium/chrome/browser/ui/cocoa/download/ |
D | download_item_mac.mm | 82 gfx::Image* icon = icon_manager->LookupIcon(file, IconLoader::SMALL); 89 icon_manager->LoadIcon(file, IconLoader::SMALL, &icon_consumer_,
|
/external/webkit/Source/WebCore/loader/ |
D | FrameLoader.h | 68 class IconLoader; variable 472 OwnPtr<IconLoader> m_iconLoader;
|
D | FrameLoader.cpp | 785 m_iconLoader = IconLoader::create(m_frame); in continueIconLoadWithDecision()
|
/external/chromium/chrome/browser/ui/views/download/ |
D | download_item_view.cc | 543 IconLoader::SMALL); in OnMouseDragged() 908 IconLoader::SMALL); in OnPaint() 970 IconLoader::SMALL, &icon_consumer_, in LoadIcon()
|
/external/chromium/chrome/browser/ui/gtk/download/ |
D | download_item_gtk.cc | 537 IconLoader::SMALL, &icon_consumer_, in LoadIcon() 540 IconLoader::LARGE, &icon_consumer_, in LoadIcon()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 6690 * loader/icon/IconLoader.cpp: 6691 (WebCore::IconLoader::didFail): 6692 * loader/icon/IconLoader.h: 7198 * loader/icon/IconLoader.cpp: 7199 (WebCore::IconLoader::startLoading): 7200 (WebCore::IconLoader::stopLoading): 7201 (WebCore::IconLoader::didReceiveResponse): 7202 (WebCore::IconLoader::didReceiveData): 7203 (WebCore::IconLoader::didFailWithError): 7204 (WebCore::IconLoader::didFinishLoading): [all …]
|
D | Android.mk | 477 loader/icon/IconLoader.cpp \
|
D | ChangeLog-2007-10-14 | 8514 <rdar://problem/5089241> - ASSERT and other funky effects in IconLoader with large 404 pages 8519 IconLoader "finishing" twice 8527 * loader/icon/IconLoader.cpp: 8528 (WebCore::IconLoader::didReceiveResponse): If the response is not valid, commit null data 8529 … (WebCore::IconLoader::didFail): If we've already finished loading once (the 404 response), don't 8531 (WebCore::IconLoader::didFinishLoading): Ditto 8532 … (WebCore::IconLoader::finishLoading): Take a SharedBuffer argumnt as the actual data to commit 8533 * loader/icon/IconLoader.h: Add a SharedBuffer arg to ::finishLoading() 17334 * loader/icon/IconLoader.cpp: 17335 (WebCore::IconLoader::didReceiveResponse): [all …]
|
D | WebCore.pro | 876 loader/icon/IconLoader.cpp \ 1824 loader/icon/IconLoader.h \
|
D | CMakeLists.txt | 991 loader/icon/IconLoader.cpp
|
D | GNUmakefile.list.am | 2091 Source/WebCore/loader/icon/IconLoader.cpp \ 2092 Source/WebCore/loader/icon/IconLoader.h \
|
D | GNUmakefile.am | 2107 Source/WebCore/loader/icon/IconLoader.cpp \ 2108 Source/WebCore/loader/icon/IconLoader.h \
|