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

Side by Side Diff: tools/battor_agent/battor_agent.cc

Issue 1969863002: Fix include path for moved thread_task_runner_handle.h header in tools/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: 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
« no previous file with comments | « tools/android/forwarder2/self_deleter_helper.h ('k') | tools/battor_agent/battor_agent_bin.cc » ('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 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 "tools/battor_agent/battor_agent.h" 5 #include "tools/battor_agent/battor_agent.h"
6 6
7 #include <iomanip> 7 #include <iomanip>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #include "tools/battor_agent/battor_connection_impl.h" 11 #include "tools/battor_agent/battor_connection_impl.h"
12 #include "tools/battor_agent/battor_sample_converter.h" 12 #include "tools/battor_agent/battor_sample_converter.h"
13 13
14 using std::vector; 14 using std::vector;
15 15
16 namespace battor { 16 namespace battor {
17 17
18 namespace { 18 namespace {
19 19
20 // The number of seconds that it takes a BattOr to reset. 20 // The number of seconds that it takes a BattOr to reset.
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 if (clock_sync_marker != clock_sync_markers_.end()) 561 if (clock_sync_marker != clock_sync_markers_.end())
562 trace_stream << " <" << clock_sync_marker->second << ">"; 562 trace_stream << " <" << clock_sync_marker->second << ">";
563 563
564 trace_stream << std::endl; 564 trace_stream << std::endl;
565 } 565 }
566 566
567 return trace_stream.str(); 567 return trace_stream.str();
568 } 568 }
569 569
570 } // namespace battor 570 } // namespace battor
OLDNEW
« no previous file with comments | « tools/android/forwarder2/self_deleter_helper.h ('k') | tools/battor_agent/battor_agent_bin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698