Home
last modified time | relevance | path

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

/external/chromium_org/cc/blink/
Dweb_layer_impl.cc319 bool should_scroll_on_main_thread) { in setShouldScrollOnMainThread() argument
320 layer_->SetShouldScrollOnMainThread(should_scroll_on_main_thread); in setShouldScrollOnMainThread()
324 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.h277 void SetShouldScrollOnMainThread(bool should_scroll_on_main_thread);
278 bool should_scroll_on_main_thread() const { in should_scroll_on_main_thread() function
Dlayer.cc699 void Layer::SetShouldScrollOnMainThread(bool should_scroll_on_main_thread) { in SetShouldScrollOnMainThread() argument
701 if (should_scroll_on_main_thread_ == should_scroll_on_main_thread) in SetShouldScrollOnMainThread()
703 should_scroll_on_main_thread_ = should_scroll_on_main_thread; in SetShouldScrollOnMainThread()
Dlayer_impl.cc428 if (should_scroll_on_main_thread()) { in TryScroll()