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

Side by Side Diff: chrome/browser/chromeos/system/input_device_settings.cc

Issue 19631004: Update include paths in chrome/browser/ for base/process changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge ToT 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
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 #include "chrome/browser/chromeos/system/input_device_settings.h" 5 #include "chrome/browser/chromeos/system/input_device_settings.h"
6 6
7 #include <stdarg.h> 7 #include <stdarg.h>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/chromeos/chromeos_version.h" 12 #include "base/chromeos/chromeos_version.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/file_util.h" 14 #include "base/file_util.h"
15 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/message_loop/message_loop.h" 17 #include "base/message_loop/message_loop.h"
18 #include "base/process.h" 18 #include "base/process/kill.h"
19 #include "base/process_util.h" 19 #include "base/process/launch.h"
20 #include "base/process/process_handle.h"
20 #include "base/strings/stringprintf.h" 21 #include "base/strings/stringprintf.h"
21 #include "base/task_runner.h" 22 #include "base/task_runner.h"
22 #include "base/threading/sequenced_worker_pool.h" 23 #include "base/threading/sequenced_worker_pool.h"
23 #include "content/public/browser/browser_thread.h" 24 #include "content/public/browser/browser_thread.h"
24 25
25 namespace chromeos { 26 namespace chromeos {
26 namespace system { 27 namespace system {
27 28
28 namespace { 29 namespace {
29 30
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 175
175 void SetPrimaryButtonRight(bool right) { 176 void SetPrimaryButtonRight(bool right) {
176 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); 177 DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
177 ExecuteScript(3, kMouseControl, "swap_left_right", right ? "1" : "0"); 178 ExecuteScript(3, kMouseControl, "swap_left_right", right ? "1" : "0");
178 } 179 }
179 180
180 } // namespace mouse_settings 181 } // namespace mouse_settings
181 182
182 } // namespace system 183 } // namespace system
183 } // namespace chromeos 184 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/memory/oom_priority_manager.cc ('k') | chrome/browser/chromeos/system_logs/command_line_log_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698