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

Side by Side Diff: remoting/host/token_validator_factory_impl.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 5 years 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 | « remoting/host/token_validator_factory_impl.h ('k') | remoting/host/touch_injector_win.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 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/token_validator_factory_impl.h" 5 #include "remoting/host/token_validator_factory_impl.h"
6 6
7 #include <stddef.h>
8
7 #include "base/base64.h" 9 #include "base/base64.h"
8 #include "base/bind.h" 10 #include "base/bind.h"
9 #include "base/callback.h" 11 #include "base/callback.h"
10 #include "base/json/json_reader.h" 12 #include "base/json/json_reader.h"
11 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/macros.h"
12 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
13 #include "base/strings/string_util.h" 16 #include "base/strings/string_util.h"
14 #include "base/values.h" 17 #include "base/values.h"
15 #include "crypto/random.h" 18 #include "crypto/random.h"
16 #include "net/base/elements_upload_data_stream.h" 19 #include "net/base/elements_upload_data_stream.h"
17 #include "net/base/escape.h" 20 #include "net/base/escape.h"
18 #include "net/base/io_buffer.h" 21 #include "net/base/io_buffer.h"
19 #include "net/base/request_priority.h" 22 #include "net/base/request_priority.h"
20 #include "net/base/upload_bytes_element_reader.h" 23 #include "net/base/upload_bytes_element_reader.h"
21 #include "net/url_request/url_request.h" 24 #include "net/url_request/url_request.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 TokenValidatorFactoryImpl::CreateTokenValidator( 125 TokenValidatorFactoryImpl::CreateTokenValidator(
123 const std::string& local_jid, 126 const std::string& local_jid,
124 const std::string& remote_jid) { 127 const std::string& remote_jid) {
125 return make_scoped_ptr( 128 return make_scoped_ptr(
126 new TokenValidatorImpl(third_party_auth_config_, 129 new TokenValidatorImpl(third_party_auth_config_,
127 key_pair_, local_jid, remote_jid, 130 key_pair_, local_jid, remote_jid,
128 request_context_getter_)); 131 request_context_getter_));
129 } 132 }
130 133
131 } // namespace remoting 134 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/token_validator_factory_impl.h ('k') | remoting/host/touch_injector_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698