Searched refs:m_backingStore (Results 1 - 14 of 14) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/cairo/
H A DBackingStoreCairo.cpp64 ASSERT(m_backingStore);
67 cairo_set_source_surface(context, m_backingStore->cairoSurface(), 0, 0);
74 if (!m_backingStore)
76 m_backingStore = WidgetBackingStoreCairo::create(EwkView::toEvasObject(toAPI(m_webPageProxy)), size(), deviceScaleFactor());
78 m_backingStore = createBackingStoreForGTK(m_webPageProxy->viewWidget(), size(), deviceScaleFactor());
85 RefPtr<cairo_t> context(adoptRef(cairo_create(m_backingStore->cairoSurface())));
100 ASSERT(m_backingStore);
101 m_backingStore->scroll(scrollRect, scrollOffset);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/CoordinatedGraphics/
H A DCoordinatedDrawingAreaProxy.cpp94 if (!m_backingStore || isInAcceleratedCompositingMode())
98 if (!m_backingStore) {
105 m_backingStore->paint(context, rect);
106 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size()));
135 if (!m_backingStore && m_layerTreeContext.isEmpty())
197 ASSERT(!m_backingStore);
202 if (m_backingStore && (m_backingStore->size() != updateInfo.viewSize || m_backingStore->deviceScaleFactor() != updateInfo.deviceScaleFactor))
203 m_backingStore
[all...]
H A DCoordinatedDrawingAreaProxy.h118 std::unique_ptr<BackingStore> m_backingStore; member in class:WebKit::CoordinatedDrawingAreaProxy
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DDrawingAreaProxyImpl.cpp87 if (!m_backingStore || isInAcceleratedCompositingMode())
91 if (!m_backingStore) {
98 m_backingStore->paint(context, rect);
99 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size()));
172 ASSERT(!m_backingStore);
177 if (m_backingStore && (m_backingStore->size() != updateInfo.viewSize || m_backingStore->deviceScaleFactor() != updateInfo.deviceScaleFactor))
178 m_backingStore = nullptr;
218 if (!m_backingStore)
[all...]
H A DBackingStore.h70 OwnPtr<WebCore::WidgetBackingStore> m_backingStore; member in class:WebKit::BackingStore
H A DDrawingAreaProxyImpl.h100 std::unique_ptr<BackingStore> m_backingStore; member in class:WebKit::DrawingAreaProxyImpl
/macosx-10.10.1/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/sqlite/
H A DSQLiteIDBTransaction.cpp44 , m_backingStore(backingStore)
122 m_backingStore.unregisterCursor(&cursor);
137 m_backingStore.unregisterCursor(cursor.get());
H A DSQLiteIDBTransaction.h91 UniqueIDBDatabaseBackingStoreSQLite& m_backingStore; member in class:WebKit::SQLiteIDBTransaction
/macosx-10.10.1/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/
H A DUniqueIDBDatabase.cpp149 m_backingStore.clear();
256 ASSERT(!m_backingStore);
263 m_backingStore = UniqueIDBDatabaseBackingStoreSQLite::create(identifier, databaseDirectory);
264 std::unique_ptr<IDBDatabaseMetadata> metadata = m_backingStore->getOrEstablishMetadata();
716 ASSERT(m_backingStore);
718 bool success = m_backingStore->establishTransaction(transactionIdentifier, objectStoreIDs, mode);
727 ASSERT(m_backingStore);
729 bool success = m_backingStore->beginTransaction(transactionIdentifier);
737 ASSERT(m_backingStore);
739 bool success = m_backingStore
[all...]
H A DUniqueIDBDatabase.h205 RefPtr<UniqueIDBDatabaseBackingStore> m_backingStore; member in class:WebKit::UniqueIDBDatabase
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/
H A DPluginProxy.cpp204 if (!needsBackingStore() || !m_backingStore)
211 auto graphicsContext = m_backingStore->createGraphicsContext();
220 m_backingStore->paint(*graphicsContext, contentsScaleFactor(), dirtyRect.location(), dirtyRect);
273 m_pluginBackingStore = ShareableBitmap::createShareable(m_backingStore->size(), ShareableBitmap::SupportsAlpha);
592 if (!m_backingStore) {
593 m_backingStore = ShareableBitmap::create(backingStoreSize, ShareableBitmap::SupportsAlpha);
597 if (backingStoreSize != m_backingStore->size()) {
599 return m_backingStore->resize(backingStoreSize);
695 if (m_backingStore) {
697 auto graphicsContext = m_backingStore
[all...]
H A DPluginProxy.h200 RefPtr<ShareableBitmap> m_backingStore; member in class:WebKit::PluginProxy
/macosx-10.10.1/WebKit2-7600.1.25/PluginProcess/
H A DPluginControllerProxy.cpp172 if (!m_backingStore)
181 auto graphicsContext = m_backingStore->createGraphicsContext();
424 m_backingStore = ShareableBitmap::create(backingStoreHandle);
H A DPluginControllerProxy.h216 RefPtr<ShareableBitmap> m_backingStore; member in class:WebKit::PluginControllerProxy

Completed in 118 milliseconds