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

Side by Side Diff: chrome/test/chromedriver/server/http_handler.cc

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 | « chrome/test/chromedriver/server/http_handler.h ('k') | chrome/test/chromedriver/session.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) 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/server/http_handler.h" 5 #include "chrome/test/chromedriver/server/http_handler.h"
6 6
7 #include <stddef.h>
8
7 #include "base/bind.h" 9 #include "base/bind.h"
8 #include "base/callback.h" 10 #include "base/callback.h"
9 #include "base/json/json_reader.h" 11 #include "base/json/json_reader.h"
10 #include "base/json/json_writer.h" 12 #include "base/json/json_writer.h"
11 #include "base/logging.h" // For CHECK macros. 13 #include "base/logging.h" // For CHECK macros.
14 #include "base/macros.h"
12 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
13 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
14 #include "base/strings/string_split.h" 17 #include "base/strings/string_split.h"
15 #include "base/strings/string_util.h" 18 #include "base/strings/string_util.h"
16 #include "base/strings/stringprintf.h" 19 #include "base/strings/stringprintf.h"
17 #include "base/strings/utf_string_conversions.h" 20 #include "base/strings/utf_string_conversions.h"
18 #include "base/sys_info.h" 21 #include "base/sys_info.h"
19 #include "base/thread_task_runner_handle.h" 22 #include "base/thread_task_runner_handle.h"
20 #include "base/values.h" 23 #include "base/values.h"
24 #include "build/build_config.h"
21 #include "chrome/test/chromedriver/alert_commands.h" 25 #include "chrome/test/chromedriver/alert_commands.h"
22 #include "chrome/test/chromedriver/chrome/adb_impl.h" 26 #include "chrome/test/chromedriver/chrome/adb_impl.h"
23 #include "chrome/test/chromedriver/chrome/device_manager.h" 27 #include "chrome/test/chromedriver/chrome/device_manager.h"
24 #include "chrome/test/chromedriver/chrome/status.h" 28 #include "chrome/test/chromedriver/chrome/status.h"
25 #include "chrome/test/chromedriver/net/port_server.h" 29 #include "chrome/test/chromedriver/net/port_server.h"
26 #include "chrome/test/chromedriver/net/url_request_context_getter.h" 30 #include "chrome/test/chromedriver/net/url_request_context_getter.h"
27 #include "chrome/test/chromedriver/session.h" 31 #include "chrome/test/chromedriver/session.h"
28 #include "chrome/test/chromedriver/session_thread_map.h" 32 #include "chrome/test/chromedriver/session_thread_map.h"
29 #include "chrome/test/chromedriver/util.h" 33 #include "chrome/test/chromedriver/util.h"
30 #include "chrome/test/chromedriver/version.h" 34 #include "chrome/test/chromedriver/version.h"
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 params.SetString(name, decoded); 777 params.SetString(name, decoded);
774 } else if (command_path_parts[i] != path_parts[i]) { 778 } else if (command_path_parts[i] != path_parts[i]) {
775 return false; 779 return false;
776 } 780 }
777 } 781 }
778 out_params->MergeDictionary(&params); 782 out_params->MergeDictionary(&params);
779 return true; 783 return true;
780 } 784 }
781 785
782 } // namespace internal 786 } // namespace internal
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/server/http_handler.h ('k') | chrome/test/chromedriver/session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698