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

Side by Side Diff: tools/battor_agent/battor_agent_bin.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/battor_agent/battor_agent.cc ('k') | tools/battor_agent/battor_agent_unittest.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 // This file provides a thin binary wrapper around the BattOr Agent 5 // This file provides a thin binary wrapper around the BattOr Agent
6 // library. This binary wrapper provides a means for non-C++ tracing 6 // library. This binary wrapper provides a means for non-C++ tracing
7 // controllers, such as Telemetry and Android Systrace, to issue high-level 7 // controllers, such as Telemetry and Android Systrace, to issue high-level
8 // tracing commands to the BattOr through an interactive shell. 8 // tracing commands to the BattOr through an interactive shell.
9 // 9 //
10 // Example usage of how an external trace controller might use this binary: 10 // Example usage of how an external trace controller might use this binary:
(...skipping 27 matching lines...) Expand all
38 38
39 #include "base/at_exit.h" 39 #include "base/at_exit.h"
40 #include "base/bind.h" 40 #include "base/bind.h"
41 #include "base/bind_helpers.h" 41 #include "base/bind_helpers.h"
42 #include "base/command_line.h" 42 #include "base/command_line.h"
43 #include "base/location.h" 43 #include "base/location.h"
44 #include "base/logging.h" 44 #include "base/logging.h"
45 #include "base/run_loop.h" 45 #include "base/run_loop.h"
46 #include "base/strings/string_tokenizer.h" 46 #include "base/strings/string_tokenizer.h"
47 #include "base/strings/utf_string_conversions.h" 47 #include "base/strings/utf_string_conversions.h"
48 #include "base/thread_task_runner_handle.h"
49 #include "base/threading/thread.h" 48 #include "base/threading/thread.h"
49 #include "base/threading/thread_task_runner_handle.h"
50 #include "tools/battor_agent/battor_agent.h" 50 #include "tools/battor_agent/battor_agent.h"
51 #include "tools/battor_agent/battor_error.h" 51 #include "tools/battor_agent/battor_error.h"
52 #include "tools/battor_agent/battor_finder.h" 52 #include "tools/battor_agent/battor_finder.h"
53 53
54 using std::endl; 54 using std::endl;
55 55
56 namespace battor { 56 namespace battor {
57 57
58 namespace { 58 namespace {
59 59
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 }; 306 };
307 307
308 } // namespace battor 308 } // namespace battor
309 309
310 int main(int argc, char* argv[]) { 310 int main(int argc, char* argv[]) {
311 base::AtExitManager exit_manager; 311 base::AtExitManager exit_manager;
312 base::CommandLine::Init(argc, argv); 312 base::CommandLine::Init(argc, argv);
313 battor::BattOrAgentBin bin; 313 battor::BattOrAgentBin bin;
314 return bin.Run(argc, argv); 314 return bin.Run(argc, argv);
315 } 315 }
OLDNEW
« no previous file with comments | « tools/battor_agent/battor_agent.cc ('k') | tools/battor_agent/battor_agent_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698