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

Side by Side Diff: remoting/client/jni/chromoting_jni_instance.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
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/client/jni/chromoting_jni_instance.h" 5 #include "remoting/client/jni/chromoting_jni_instance.h"
6 6
7 #include <android/log.h> 7 #include <android/log.h>
8 #include <stdint.h>
8 9
9 #include "base/bind.h" 10 #include "base/bind.h"
10 #include "base/logging.h" 11 #include "base/logging.h"
11 #include "jingle/glue/thread_wrapper.h" 12 #include "jingle/glue/thread_wrapper.h"
12 #include "net/socket/client_socket_factory.h" 13 #include "net/socket/client_socket_factory.h"
13 #include "remoting/base/service_urls.h" 14 #include "remoting/base/service_urls.h"
14 #include "remoting/client/audio_player.h" 15 #include "remoting/client/audio_player.h"
15 #include "remoting/client/client_status_logger.h" 16 #include "remoting/client/client_status_logger.h"
16 #include "remoting/client/jni/android_keymap.h" 17 #include "remoting/client/jni/android_keymap.h"
17 #include "remoting/client/jni/chromoting_jni_runtime.h" 18 #include "remoting/client/jni/chromoting_jni_runtime.h"
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 perf_tracker_->round_trip_ms()); 507 perf_tracker_->round_trip_ms());
507 508
508 client_status_logger_->LogStatistics(perf_tracker_.get()); 509 client_status_logger_->LogStatistics(perf_tracker_.get());
509 510
510 jni_runtime_->network_task_runner()->PostDelayedTask( 511 jni_runtime_->network_task_runner()->PostDelayedTask(
511 FROM_HERE, base::Bind(&ChromotingJniInstance::LogPerfStats, this), 512 FROM_HERE, base::Bind(&ChromotingJniInstance::LogPerfStats, this),
512 base::TimeDelta::FromMilliseconds(kPerfStatsIntervalMs)); 513 base::TimeDelta::FromMilliseconds(kPerfStatsIntervalMs));
513 } 514 }
514 515
515 } // namespace remoting 516 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/client/jni/chromoting_jni_instance.h ('k') | remoting/client/jni/chromoting_jni_runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698