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

Side by Side Diff: ppapi/tests/test_trace_event.cc

Issue 23484036: Add newlines to the end of files where they were missing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 3 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
« no previous file with comments | « ppapi/proxy/url_loader_resource.cc ('k') | remoting/host/audio_silence_detector.h » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "ppapi/tests/test_trace_event.h" 5 #include "ppapi/tests/test_trace_event.h"
6 6
7 #include "ppapi/cpp/module.h" 7 #include "ppapi/cpp/module.h"
8 #include "ppapi/tests/testing_instance.h" 8 #include "ppapi/tests/testing_instance.h"
9 9
10 REGISTER_TEST_CASE(TraceEvent); 10 REGISTER_TEST_CASE(TraceEvent);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 std::string TestTraceEvent::TestClock() { 55 std::string TestTraceEvent::TestClock() {
56 int64_t last = interface_->Now(); 56 int64_t last = interface_->Now();
57 57
58 for(int i=0; i<5; ++i){ 58 for(int i=0; i<5; ++i){
59 int64_t next = interface_->Now(); 59 int64_t next = interface_->Now();
60 ASSERT_LE(last, next); 60 ASSERT_LE(last, next);
61 last = next; 61 last = next;
62 } 62 }
63 63
64 PASS(); 64 PASS();
65 } 65 }
OLDNEW
« no previous file with comments | « ppapi/proxy/url_loader_resource.cc ('k') | remoting/host/audio_silence_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698