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

Unified Diff: webkit/compositor_bindings/web_compositor_support_impl.cc

Issue 11361223: cc: Remove cc::settings, move them to LayerTreeSettings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix-unittests Created 8 years, 1 month 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 | « ppapi/shared_impl/ppapi_preferences.cc ('k') | webkit/compositor_bindings/web_layer_tree_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/compositor_bindings/web_compositor_support_impl.cc
diff --git a/webkit/compositor_bindings/web_compositor_support_impl.cc b/webkit/compositor_bindings/web_compositor_support_impl.cc
index 48af47e4cd5fc2f48bf9e41d8e4c120bb52c2ee8..33cf0fc1230ee3c9f1eb24cdec91cb58d3e1cb49 100644
--- a/webkit/compositor_bindings/web_compositor_support_impl.cc
+++ b/webkit/compositor_bindings/web_compositor_support_impl.cc
@@ -7,7 +7,6 @@
#include "base/debug/trace_event.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop_proxy.h"
-#include "cc/settings.h"
#include "cc/thread_impl.h"
#include "webkit/compositor_bindings/web_animation_impl.h"
#include "webkit/compositor_bindings/web_content_layer_impl.h"
@@ -80,19 +79,19 @@ void WebCompositorSupportImpl::shutdown() {
}
void WebCompositorSupportImpl::setPerTilePaintingEnabled(bool enabled) {
- cc::Settings::setPerTilePaintingEnabled(enabled);
+ NOTREACHED();
}
void WebCompositorSupportImpl::setPartialSwapEnabled(bool enabled) {
- cc::Settings::setPartialSwapEnabled(enabled);
+ NOTREACHED();
}
void WebCompositorSupportImpl::setAcceleratedAnimationEnabled(bool enabled) {
- cc::Settings::setAcceleratedAnimationEnabled(enabled);
+ NOTREACHED();
}
void WebCompositorSupportImpl::setPageScalePinchZoomEnabled(bool enabled) {
- cc::Settings::setPageScalePinchZoomEnabled(enabled);
+ NOTREACHED();
}
WebLayerTreeView* WebCompositorSupportImpl::createLayerTreeView(
« no previous file with comments | « ppapi/shared_impl/ppapi_preferences.cc ('k') | webkit/compositor_bindings/web_layer_tree_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698