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

Side by Side Diff: sky/engine/testing/platform/platform_impl.cc

Issue 889823002: Remove TRACE_EVENT indirection through blink::Platform (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "sky/engine/testing/platform/platform_impl.h" 5 #include "sky/engine/testing/platform/platform_impl.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/rand_util.h" 9 #include "base/rand_util.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 } 75 }
76 76
77 void PlatformImpl::stopSharedTimer() { 77 void PlatformImpl::stopSharedTimer() {
78 shared_timer_.Stop(); 78 shared_timer_.Stop();
79 } 79 }
80 80
81 blink::WebUnitTestSupport* PlatformImpl::unitTestSupport() { 81 blink::WebUnitTestSupport* PlatformImpl::unitTestSupport() {
82 return &unit_test_support_; 82 return &unit_test_support_;
83 } 83 }
84 84
85 const unsigned char* PlatformImpl::getTraceCategoryEnabledFlag(
86 const char* category_name) {
87 static const unsigned char buf[] = "*";
88 return buf;
89 }
90
91 } // namespace sky 85 } // namespace sky
OLDNEW
« no previous file with comments | « sky/engine/testing/platform/platform_impl.h ('k') | sky/engine/v8_inspector/InjectedScriptBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698