Home
last modified time | relevance | path

Searched refs:should_scroll_on_main_thread (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/webkit/renderer/compositor_bindings/
Dweb_layer_impl.cc285 bool should_scroll_on_main_thread) { in setShouldScrollOnMainThread() argument
286 layer_->SetShouldScrollOnMainThread(should_scroll_on_main_thread); in setShouldScrollOnMainThread()
290 return layer_->should_scroll_on_main_thread(); in shouldScrollOnMainThread()
/external/chromium_org/cc/layers/
Dlayer_impl.h415 void SetShouldScrollOnMainThread(bool should_scroll_on_main_thread) { in SetShouldScrollOnMainThread() argument
416 should_scroll_on_main_thread_ = should_scroll_on_main_thread; in SetShouldScrollOnMainThread()
418 bool should_scroll_on_main_thread() const { in should_scroll_on_main_thread() function
Dlayer.h285 void SetShouldScrollOnMainThread(bool should_scroll_on_main_thread);
286 bool should_scroll_on_main_thread() const { in should_scroll_on_main_thread() function
Dlayer.cc730 void Layer::SetShouldScrollOnMainThread(bool should_scroll_on_main_thread) { in SetShouldScrollOnMainThread() argument
732 if (should_scroll_on_main_thread_ == should_scroll_on_main_thread) in SetShouldScrollOnMainThread()
734 should_scroll_on_main_thread_ = should_scroll_on_main_thread; in SetShouldScrollOnMainThread()
Dlayer_impl.cc416 if (should_scroll_on_main_thread()) { in TryScroll()