Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: webkit/glue/webkitplatformsupport_impl.h

Issue 14619019: Move compositor support out of base WebKitPlatformSupport into renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | webkit/glue/webkitplatformsupport_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitplatformsupport_impl.h
diff --git a/webkit/glue/webkitplatformsupport_impl.h b/webkit/glue/webkitplatformsupport_impl.h
index c2c977833b9e304811620a116a5aa8bea85c9d91..145f631ded92036e6b8e2f8d2f23d78ea1542939 100644
--- a/webkit/glue/webkitplatformsupport_impl.h
+++ b/webkit/glue/webkitplatformsupport_impl.h
@@ -32,7 +32,6 @@ class MessageLoop;
}
namespace webkit {
-class WebCompositorSupportImpl;
struct WebPluginInfo;
}
@@ -129,7 +128,6 @@ class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl :
virtual void callOnMainThread(void (*func)(void*), void* context);
virtual WebKit::WebThread* createThread(const char* name);
virtual WebKit::WebThread* currentThread();
- virtual WebKit::WebCompositorSupport* compositorSupport();
virtual WebKit::WebDiscardableMemory* allocateAndLockDiscardableMemory(
size_t bytes);
@@ -171,10 +169,6 @@ class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl :
const WebKit::WebFloatPoint& velocity,
const WebKit::WebSize& cumulative_scroll) OVERRIDE;
- webkit::WebCompositorSupportImpl* compositor_support_impl() const {
- return compositor_support_.get();
- }
-
#if defined(OS_ANDROID)
virtual webkit_media::WebAudioMediaCodecRunner
GetWebAudioMediaCodecRunner();
@@ -194,7 +188,6 @@ class WEBKIT_GLUE_EXPORT WebKitPlatformSupportImpl :
int shared_timer_suspended_; // counter
WebThemeEngineImpl theme_engine_;
base::ThreadLocalStorage::Slot current_thread_slot_;
- scoped_ptr<webkit::WebCompositorSupportImpl> compositor_support_;
scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_;
};
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | webkit/glue/webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698