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

Side by Side Diff: gpu/command_buffer/service/gpu_scheduler.cc

Issue 468913010: Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « gpu/command_buffer/service/gpu_scheduler.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "gpu/command_buffer/service/gpu_scheduler.h" 5 #include "gpu/command_buffer/service/gpu_scheduler.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/debug/trace_event.h" 10 #include "base/debug/trace_event.h"
(...skipping 18 matching lines...) Expand all
29 #endif 29 #endif
30 30
31 GpuScheduler::GpuScheduler(CommandBufferServiceBase* command_buffer, 31 GpuScheduler::GpuScheduler(CommandBufferServiceBase* command_buffer,
32 AsyncAPIInterface* handler, 32 AsyncAPIInterface* handler,
33 gles2::GLES2Decoder* decoder) 33 gles2::GLES2Decoder* decoder)
34 : command_buffer_(command_buffer), 34 : command_buffer_(command_buffer),
35 handler_(handler), 35 handler_(handler),
36 decoder_(decoder), 36 decoder_(decoder),
37 unscheduled_count_(0), 37 unscheduled_count_(0),
38 rescheduled_count_(0), 38 rescheduled_count_(0),
39 reschedule_task_factory_(this), 39 was_preempted_(false),
40 was_preempted_(false) {} 40 reschedule_task_factory_(this) {}
41 41
42 GpuScheduler::~GpuScheduler() { 42 GpuScheduler::~GpuScheduler() {
43 } 43 }
44 44
45 void GpuScheduler::PutChanged() { 45 void GpuScheduler::PutChanged() {
46 TRACE_EVENT1( 46 TRACE_EVENT1(
47 "gpu", "GpuScheduler:PutChanged", 47 "gpu", "GpuScheduler:PutChanged",
48 "decoder", decoder_ ? decoder_->GetLogger()->GetLogPrefix() : "None"); 48 "decoder", decoder_ ? decoder_->GetLogger()->GetLogPrefix() : "None");
49 49
50 CommandBuffer::State state = command_buffer_->GetLastState(); 50 CommandBuffer::State state = command_buffer_->GetLastState();
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 base::Closure task_) 303 base::Closure task_)
304 : fence(fence_), 304 : fence(fence_),
305 issue_time(base::Time::Now()), 305 issue_time(base::Time::Now()),
306 task(task_) { 306 task(task_) {
307 } 307 }
308 308
309 GpuScheduler::UnscheduleFence::~UnscheduleFence() { 309 GpuScheduler::UnscheduleFence::~UnscheduleFence() {
310 } 310 }
311 311
312 } // namespace gpu 312 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gpu_scheduler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698