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

Side by Side Diff: base/tracked_objects_unittest.cc

Issue 18119002: Use a direct include of time headers in base/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix Created 7 years, 5 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 | « base/timer/timer_unittest.cc ('k') | base/tracking_info.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 (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 // Test of classes in the tracked_objects.h classes. 5 // Test of classes in the tracked_objects.h classes.
6 6
7 #include "base/tracked_objects.h" 7 #include "base/tracked_objects.h"
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/process_util.h" 10 #include "base/process_util.h"
11 #include "base/time.h" 11 #include "base/time/time.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 const int kLineNumber = 1776; 14 const int kLineNumber = 1776;
15 const char kFile[] = "FixedUnitTestFileName"; 15 const char kFile[] = "FixedUnitTestFileName";
16 const char kWorkerThreadName[] = "WorkerThread-1"; 16 const char kWorkerThreadName[] = "WorkerThread-1";
17 const char kMainThreadName[] = "SomeMainThreadName"; 17 const char kMainThreadName[] = "SomeMainThreadName";
18 const char kStillAlive[] = "Still_Alive"; 18 const char kStillAlive[] = "Still_Alive";
19 19
20 namespace tracked_objects { 20 namespace tracked_objects {
21 21
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 EXPECT_EQ(0, process_data.tasks[1].death_data.run_duration_sample); 572 EXPECT_EQ(0, process_data.tasks[1].death_data.run_duration_sample);
573 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_sum); 573 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_sum);
574 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_max); 574 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_max);
575 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_sample); 575 EXPECT_EQ(0, process_data.tasks[1].death_data.queue_duration_sample);
576 EXPECT_EQ(kStillAlive, process_data.tasks[1].death_thread_name); 576 EXPECT_EQ(kStillAlive, process_data.tasks[1].death_thread_name);
577 EXPECT_EQ(0u, process_data.descendants.size()); 577 EXPECT_EQ(0u, process_data.descendants.size());
578 EXPECT_EQ(base::GetCurrentProcId(), process_data.process_id); 578 EXPECT_EQ(base::GetCurrentProcId(), process_data.process_id);
579 } 579 }
580 580
581 } // namespace tracked_objects 581 } // namespace tracked_objects
OLDNEW
« no previous file with comments | « base/timer/timer_unittest.cc ('k') | base/tracking_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698