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

Side by Side Diff: components/mus/gles2/command_buffer_local.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/mus/gles2/command_buffer_local.h" 5 #include "components/mus/gles2/command_buffer_local.h"
6 6
7 #include "base/atomic_sequence_num.h" 7 #include "base/atomic_sequence_num.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/memory/shared_memory.h" 9 #include "base/memory/shared_memory.h"
10 #include "base/synchronization/waitable_event.h" 10 #include "base/synchronization/waitable_event.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "components/mus/gles2/command_buffer_driver.h" 12 #include "components/mus/gles2/command_buffer_driver.h"
13 #include "components/mus/gles2/command_buffer_local_client.h" 13 #include "components/mus/gles2/command_buffer_local_client.h"
14 #include "components/mus/gles2/command_buffer_type_conversions.h" 14 #include "components/mus/gles2/command_buffer_type_conversions.h"
15 #include "components/mus/gles2/gpu_memory_tracker.h" 15 #include "components/mus/gles2/gpu_memory_tracker.h"
16 #include "components/mus/gles2/gpu_state.h" 16 #include "components/mus/gles2/gpu_state.h"
17 #include "components/mus/gles2/mojo_buffer_backing.h" 17 #include "components/mus/gles2/mojo_buffer_backing.h"
18 #include "components/mus/gles2/mojo_gpu_memory_buffer.h" 18 #include "components/mus/gles2/mojo_gpu_memory_buffer.h"
19 #include "gpu/command_buffer/client/gpu_control_client.h" 19 #include "gpu/command_buffer/client/gpu_control_client.h"
20 #include "gpu/command_buffer/common/gpu_memory_buffer_support.h" 20 #include "gpu/command_buffer/common/gpu_memory_buffer_support.h"
21 #include "gpu/command_buffer/common/sync_token.h" 21 #include "gpu/command_buffer/common/sync_token.h"
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 client_->UpdateVSyncParameters(timebase, interval); 578 client_->UpdateVSyncParameters(timebase, interval);
579 } 579 }
580 580
581 void CommandBufferLocal::OnGpuCompletedSwapBuffersOnClientThread( 581 void CommandBufferLocal::OnGpuCompletedSwapBuffersOnClientThread(
582 gfx::SwapResult result) { 582 gfx::SwapResult result) {
583 if (client_) 583 if (client_)
584 client_->GpuCompletedSwapBuffers(result); 584 client_->GpuCompletedSwapBuffers(result);
585 } 585 }
586 586
587 } // namespace mus 587 } // namespace mus
OLDNEW
« no previous file with comments | « components/mus/gles2/command_buffer_driver.cc ('k') | components/mus/gles2/command_buffer_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698