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

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

Issue 16835007: Update the include paths of message_loop_proxy.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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/proxy.h" 5 #include "cc/trees/proxy.h"
6 6
7 #include "base/message_loop_proxy.h" 7 #include "base/message_loop/message_loop_proxy.h"
8 #include "base/single_thread_task_runner.h" 8 #include "base/single_thread_task_runner.h"
9 9
10 namespace cc { 10 namespace cc {
11 11
12 base::SingleThreadTaskRunner* Proxy::MainThreadTaskRunner() const { 12 base::SingleThreadTaskRunner* Proxy::MainThreadTaskRunner() const {
13 return main_task_runner_.get(); 13 return main_task_runner_.get();
14 } 14 }
15 15
16 bool Proxy::HasImplThread() const { return !!impl_task_runner_.get(); } 16 bool Proxy::HasImplThread() const { return !!impl_task_runner_.get(); }
17 17
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 75
76 Proxy::~Proxy() { 76 Proxy::~Proxy() {
77 DCHECK(IsMainThread()); 77 DCHECK(IsMainThread());
78 } 78 }
79 79
80 std::string Proxy::SchedulerStateAsStringForTesting() { 80 std::string Proxy::SchedulerStateAsStringForTesting() {
81 return ""; 81 return "";
82 } 82 }
83 83
84 } // namespace cc 84 } // namespace cc
OLDNEW
« no previous file with comments | « base/message_loop_proxy.h ('k') | chrome/browser/extensions/api/system_info_display/display_info_provider_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698