OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/plugin/chromoting_instance.h" | 5 #include "remoting/client/plugin/chromoting_instance.h" |
6 | 6 |
7 #include <nacl_io/nacl_io.h> | 7 #include <nacl_io/nacl_io.h> |
8 #include <sys/mount.h> | 8 #include <sys/mount.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "ppapi/cpp/dev/url_util_dev.h" | 33 #include "ppapi/cpp/dev/url_util_dev.h" |
34 #include "ppapi/cpp/image_data.h" | 34 #include "ppapi/cpp/image_data.h" |
35 #include "ppapi/cpp/input_event.h" | 35 #include "ppapi/cpp/input_event.h" |
36 #include "ppapi/cpp/private/uma_private.h" | 36 #include "ppapi/cpp/private/uma_private.h" |
37 #include "ppapi/cpp/rect.h" | 37 #include "ppapi/cpp/rect.h" |
38 #include "ppapi/cpp/var_array_buffer.h" | 38 #include "ppapi/cpp/var_array_buffer.h" |
39 #include "ppapi/cpp/var_dictionary.h" | 39 #include "ppapi/cpp/var_dictionary.h" |
40 #include "remoting/base/constants.h" | 40 #include "remoting/base/constants.h" |
41 #include "remoting/base/util.h" | 41 #include "remoting/base/util.h" |
42 #include "remoting/client/chromoting_client.h" | 42 #include "remoting/client/chromoting_client.h" |
43 #include "remoting/client/normalizing_input_filter_cros.h" | 43 #include "remoting/client/input/normalizing_input_filter_cros.h" |
44 #include "remoting/client/normalizing_input_filter_mac.h" | 44 #include "remoting/client/input/normalizing_input_filter_mac.h" |
45 #include "remoting/client/normalizing_input_filter_win.h" | 45 #include "remoting/client/input/normalizing_input_filter_win.h" |
46 #include "remoting/client/plugin/pepper_audio_player.h" | 46 #include "remoting/client/plugin/pepper_audio_player.h" |
47 #include "remoting/client/plugin/pepper_main_thread_task_runner.h" | 47 #include "remoting/client/plugin/pepper_main_thread_task_runner.h" |
48 #include "remoting/client/plugin/pepper_mouse_locker.h" | 48 #include "remoting/client/plugin/pepper_mouse_locker.h" |
49 #include "remoting/client/plugin/pepper_port_allocator_factory.h" | 49 #include "remoting/client/plugin/pepper_port_allocator_factory.h" |
50 #include "remoting/client/plugin/pepper_url_request.h" | 50 #include "remoting/client/plugin/pepper_url_request.h" |
51 #include "remoting/client/plugin/pepper_video_renderer_2d.h" | 51 #include "remoting/client/plugin/pepper_video_renderer_2d.h" |
52 #include "remoting/client/plugin/pepper_video_renderer_3d.h" | 52 #include "remoting/client/plugin/pepper_video_renderer_3d.h" |
53 #include "remoting/client/software_video_renderer.h" | 53 #include "remoting/client/software_video_renderer.h" |
54 #include "remoting/proto/control.pb.h" | 54 #include "remoting/proto/control.pb.h" |
55 #include "remoting/protocol/connection_to_host.h" | 55 #include "remoting/protocol/connection_to_host.h" |
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1131 if (is_custom_counts_histogram) { | 1131 if (is_custom_counts_histogram) { |
1132 uma.HistogramCustomCounts(histogram_name, value, histogram_min, | 1132 uma.HistogramCustomCounts(histogram_name, value, histogram_min, |
1133 histogram_max, histogram_buckets); | 1133 histogram_max, histogram_buckets); |
1134 } else { | 1134 } else { |
1135 uma.HistogramCustomTimes(histogram_name, value, histogram_min, | 1135 uma.HistogramCustomTimes(histogram_name, value, histogram_min, |
1136 histogram_max, histogram_buckets); | 1136 histogram_max, histogram_buckets); |
1137 } | 1137 } |
1138 } | 1138 } |
1139 | 1139 |
1140 } // namespace remoting | 1140 } // namespace remoting |
OLD | NEW |