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

Side by Side Diff: remoting/host/it2me/it2me_native_messaging_host.cc

Issue 1547473005: Switch to standard integer types in remoting/host/. (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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 "remoting/host/it2me/it2me_native_messaging_host.h" 5 #include "remoting/host/it2me/it2me_native_messaging_host.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/basictypes.h"
10 #include "base/bind.h" 9 #include "base/bind.h"
11 #include "base/callback.h" 10 #include "base/callback.h"
12 #include "base/json/json_reader.h" 11 #include "base/json/json_reader.h"
13 #include "base/json/json_writer.h" 12 #include "base/json/json_writer.h"
14 #include "base/strings/string_number_conversions.h" 13 #include "base/strings/string_number_conversions.h"
15 #include "base/strings/string_util.h" 14 #include "base/strings/string_util.h"
16 #include "base/strings/stringize_macros.h" 15 #include "base/strings/stringize_macros.h"
17 #include "base/threading/thread.h" 16 #include "base/threading/thread.h"
18 #include "base/values.h" 17 #include "base/values.h"
18 #include "build/build_config.h"
19 #include "net/base/net_util.h" 19 #include "net/base/net_util.h"
20 #include "net/url_request/url_request_context_getter.h" 20 #include "net/url_request/url_request_context_getter.h"
21 #include "remoting/base/service_urls.h" 21 #include "remoting/base/service_urls.h"
22 #include "remoting/host/chromoting_host_context.h" 22 #include "remoting/host/chromoting_host_context.h"
23 #include "remoting/host/host_exit_codes.h" 23 #include "remoting/host/host_exit_codes.h"
24 #include "remoting/protocol/name_value_map.h" 24 #include "remoting/protocol/name_value_map.h"
25 25
26 namespace remoting { 26 namespace remoting {
27 27
28 namespace { 28 namespace {
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 return host_context_->ui_task_runner(); 319 return host_context_->ui_task_runner();
320 } 320 }
321 321
322 /* static */ 322 /* static */
323 std::string It2MeNativeMessagingHost::HostStateToString( 323 std::string It2MeNativeMessagingHost::HostStateToString(
324 It2MeHostState host_state) { 324 It2MeHostState host_state) {
325 return ValueToName(kIt2MeHostStates, host_state); 325 return ValueToName(kIt2MeHostStates, host_state);
326 } 326 }
327 327
328 } // namespace remoting 328 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/it2me/it2me_native_messaging_host.h ('k') | remoting/host/it2me/it2me_native_messaging_host_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698