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

Side by Side Diff: cc/trees/single_thread_proxy.cc

Issue 1968363002: SurfaceAggregator should check whether output is secure when drawin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « cc/trees/single_thread_proxy.h ('k') | components/mus/public/interfaces/quads.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/trees/single_thread_proxy.h" 5 #include "cc/trees/single_thread_proxy.h"
6 6
7 #include "base/auto_reset.h" 7 #include "base/auto_reset.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "base/profiler/scoped_tracker.h" 9 #include "base/profiler/scoped_tracker.h"
10 #include "base/trace_event/trace_event.h" 10 #include "base/trace_event/trace_event.h"
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
873 void SingleThreadProxy::ScheduledActionInvalidateOutputSurface() { 873 void SingleThreadProxy::ScheduledActionInvalidateOutputSurface() {
874 NOTREACHED(); 874 NOTREACHED();
875 } 875 }
876 876
877 void SingleThreadProxy::UpdateTopControlsState(TopControlsState constraints, 877 void SingleThreadProxy::UpdateTopControlsState(TopControlsState constraints,
878 TopControlsState current, 878 TopControlsState current,
879 bool animate) { 879 bool animate) {
880 NOTREACHED() << "Top Controls are used only in threaded mode"; 880 NOTREACHED() << "Top Controls are used only in threaded mode";
881 } 881 }
882 882
883 void SingleThreadProxy::SetOutputIsSecure(bool output_is_secure) {
884 layer_tree_host_impl_->set_output_is_secure(output_is_secure);
885 }
886
887 void SingleThreadProxy::DidFinishImplFrame() { 883 void SingleThreadProxy::DidFinishImplFrame() {
888 layer_tree_host_impl_->DidFinishImplFrame(); 884 layer_tree_host_impl_->DidFinishImplFrame();
889 #if DCHECK_IS_ON() 885 #if DCHECK_IS_ON()
890 DCHECK(inside_impl_frame_) 886 DCHECK(inside_impl_frame_)
891 << "DidFinishImplFrame called while not inside an impl frame!"; 887 << "DidFinishImplFrame called while not inside an impl frame!";
892 inside_impl_frame_ = false; 888 inside_impl_frame_ = false;
893 #endif 889 #endif
894 } 890 }
895 891
896 } // namespace cc 892 } // namespace cc
OLDNEW
« no previous file with comments | « cc/trees/single_thread_proxy.h ('k') | components/mus/public/interfaces/quads.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698