/external/webkit/Source/WebKit2/UIProcess/ |
D | BackingStore.cpp | 40 PassOwnPtr<BackingStore> BackingStore::create(const IntSize& size, WebPageProxy* webPageProxy) in create() 42 return adoptPtr(new BackingStore(size, webPageProxy)); in create() 45 BackingStore::BackingStore(const IntSize& size, WebPageProxy* webPageProxy) in BackingStore() function in WebKit::BackingStore 52 BackingStore::~BackingStore() in ~BackingStore() 56 void BackingStore::incorporateUpdate(const UpdateInfo& updateInfo) in incorporateUpdate()
|
D | BackingStore.h | 49 class BackingStore { 50 WTF_MAKE_NONCOPYABLE(BackingStore); 53 static PassOwnPtr<BackingStore> create(const WebCore::IntSize&, WebPageProxy*); 54 ~BackingStore(); 68 BackingStore(const WebCore::IntSize&, WebPageProxy*);
|
D | DrawingAreaProxyImpl.h | 45 …void paint(BackingStore::PlatformGraphicsContext, const WebCore::IntRect&, Region& unpaintedRegion… 103 OwnPtr<BackingStore> m_backingStore;
|
D | DrawingAreaProxyImpl.cpp | 69 void DrawingAreaProxyImpl::paint(BackingStore::PlatformGraphicsContext context, const IntRect& rect… in paint() 244 m_backingStore = BackingStore::create(updateInfo.viewSize, m_webPageProxy); in incorporateUpdate()
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
D | BackingStoreWin.cpp | 64 void BackingStore::paint(HDC dc, const IntRect& rect) in paint() 78 void BackingStore::incorporateUpdate(ShareableBitmap* bitmap, const UpdateInfo& updateInfo) in incorporateUpdate() 100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset) in scroll()
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | BackingStoreMac.mm | 27 #import "BackingStore.h" 39 void BackingStore::paint(PlatformGraphicsContext context, const IntRect& rect) 56 CGContextRef BackingStore::backingStoreContext() 96 void BackingStore::incorporateUpdate(ShareableBitmap* bitmap, const UpdateInfo& updateInfo) 116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
|
/external/chromium/chrome/browser/extensions/ |
D | extension_tabs_module.h | 16 class BackingStore; variable 164 virtual bool CaptureSnapshotFromBackingStore(BackingStore* backing_store);
|
D | extension_tabs_module.cc | 1127 BackingStore* backing_store = render_view_host->GetBackingStore(false); in RunImpl() 1146 BackingStore* backing_store) { in CaptureSnapshotFromBackingStore()
|
/external/chromium/chrome/browser/tab_contents/ |
D | thumbnail_generator.cc | 76 BackingStore* backing_store, in GetBitmapForBackingStore() 188 BackingStore* backing_store = renderer->GetBackingStore(false); in AskForSnapshot() 255 BackingStore* backing_store = renderer->GetBackingStore(false); in GetThumbnailForRendererWithOptions()
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_win.h | 28 class BackingStore; variable 159 virtual BackingStore* AllocBackingStore(const gfx::Size& size);
|
D | render_widget_host_view_gtk.h | 89 virtual BackingStore* AllocBackingStore(const gfx::Size& size);
|
D | render_widget_host_view_views.h | 75 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE;
|
D | render_widget_host_view_mac.h | 217 virtual BackingStore* AllocBackingStore(const gfx::Size& size);
|
D | render_widget_host_view_views.cc | 367 BackingStore* RenderWidgetHostViewViews::AllocBackingStore( in AllocBackingStore() 798 BackingStore* backing_store = host_->GetBackingStore(true); in OnPaint()
|
D | render_widget_host_view_gtk.cc | 909 BackingStore* RenderWidgetHostViewGtk::AllocBackingStore( in AllocBackingStore()
|
D | render_widget_host_view_win.cc | 734 BackingStore* RenderWidgetHostViewWin::AllocBackingStore( in AllocBackingStore()
|
D | render_widget_host_view_mac.mm | 605 BackingStore* RenderWidgetHostViewMac::AllocBackingStore(
|
/external/chromium/chrome/browser/ui/gtk/tabs/ |
D | dragged_tab_gtk.cc | 295 BackingStore* backing_store = in OnExposeEvent()
|
/external/webkit/Source/WebKit2/ |
D | ChangeLog-2011-02-16 | 1494 BackingStore::incorporateUpdate in Debug builds) 1509 BackingStore::BackingStore if a new WebPage becomes active before receiving a size 2491 * UIProcess/BackingStore.h: Add an m_bitmap member on Windows. 2498 (WebKit::BackingStore::paint): Wrap our bitmap in a BitmapDC and use ::BitBlt to copy the 2502 (WebKit::BackingStore::incorporateUpdate): Ported from BackingStoreMac.mm. It seems like 2504 (WebKit::BackingStore::scroll): Wrap our bitmap in a BitmapDC and use ::ScrollDC to scroll 2538 * UIProcess/BackingStore.cpp: Removed #error for non-Mac platforms. 2540 * UIProcess/BackingStore.h: Added a PlatformGraphicsContext typedef for Windows. 3386 * UIProcess/BackingStore.cpp: 3387 (WebKit::BackingStore::BackingStore): [all …]
|
D | ChangeLog | 5405 * UIProcess/BackingStore.cpp: 5406 (WebKit::BackingStore::incorporateUpdate): 10353 BackingStore::paint
|
/external/chromium/chrome/browser/ |
D | aeropeek_manager.cc | 1235 BackingStore* backing_store = render_view_host->GetBackingStore(false);
|
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/ |
D | project.pbxproj | 136 …4256812DE42EC00CAAE2C /* BackingStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A64256612D… 137 …256912DE42EC00CAAE2C /* BackingStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A64256712… 1008 …E42EC00CAAE2C /* BackingStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 1009 …EC00CAAE2C /* BackingStore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =… 2497 1A64256712DE42EC00CAAE2C /* BackingStore.cpp */, 2498 1A64256612DE42EC00CAAE2C /* BackingStore.h */, 3624 1A64256812DE42EC00CAAE2C /* BackingStore.h in Headers */, 4237 1A64256912DE42EC00CAAE2C /* BackingStore.cpp in Sources */,
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 628 BackingStore::incorporateUpdate in Debug builds)
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 14215 [Qt][WK2] Implement BackingStore
|