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

Side by Side Diff: chrome/test/chromedriver/session_commands.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "chrome/test/chromedriver/session_commands.h" 5 #include "chrome/test/chromedriver/session_commands.h"
6 6
7 #include <list> 7 #include <list>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/logging.h" // For CHECK macros. 13 #include "base/logging.h" // For CHECK macros.
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/synchronization/lock.h" 15 #include "base/synchronization/lock.h"
16 #include "base/synchronization/waitable_event.h" 16 #include "base/synchronization/waitable_event.h"
17 #include "base/thread_task_runner_handle.h" 17 #include "base/threading/thread_task_runner_handle.h"
18 #include "base/values.h" 18 #include "base/values.h"
19 #include "chrome/test/chromedriver/basic_types.h" 19 #include "chrome/test/chromedriver/basic_types.h"
20 #include "chrome/test/chromedriver/capabilities.h" 20 #include "chrome/test/chromedriver/capabilities.h"
21 #include "chrome/test/chromedriver/chrome/automation_extension.h" 21 #include "chrome/test/chromedriver/chrome/automation_extension.h"
22 #include "chrome/test/chromedriver/chrome/browser_info.h" 22 #include "chrome/test/chromedriver/chrome/browser_info.h"
23 #include "chrome/test/chromedriver/chrome/chrome.h" 23 #include "chrome/test/chromedriver/chrome/chrome.h"
24 #include "chrome/test/chromedriver/chrome/chrome_android_impl.h" 24 #include "chrome/test/chromedriver/chrome/chrome_android_impl.h"
25 #include "chrome/test/chromedriver/chrome/chrome_desktop_impl.h" 25 #include "chrome/test/chromedriver/chrome/chrome_desktop_impl.h"
26 #include "chrome/test/chromedriver/chrome/device_manager.h" 26 #include "chrome/test/chromedriver/chrome/device_manager.h"
27 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h" 27 #include "chrome/test/chromedriver/chrome/devtools_event_listener.h"
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 687
688 Status ExecuteSetAutoReporting(Session* session, 688 Status ExecuteSetAutoReporting(Session* session,
689 const base::DictionaryValue& params, 689 const base::DictionaryValue& params,
690 std::unique_ptr<base::Value>* value) { 690 std::unique_ptr<base::Value>* value) {
691 bool enabled; 691 bool enabled;
692 if (!params.GetBoolean("enabled", &enabled)) 692 if (!params.GetBoolean("enabled", &enabled))
693 return Status(kUnknownError, "missing parameter 'enabled'"); 693 return Status(kUnknownError, "missing parameter 'enabled'");
694 session->auto_reporting_enabled = enabled; 694 session->auto_reporting_enabled = enabled;
695 return Status(kOk); 695 return Status(kOk);
696 } 696 }
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/server/http_handler.cc ('k') | chrome/test/media_router/media_router_integration_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698