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

Side by Side Diff: chrome/browser/extensions/api/cast_streaming/performance_test.cc

Issue 2508593002: net: move udp directory into socket (Closed)
Patch Set: revert sys/socket.h change Created 4 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 30 matching lines...) Expand all
41 #include "media/cast/test/utility/barcode.h" 41 #include "media/cast/test/utility/barcode.h"
42 #include "media/cast/test/utility/default_config.h" 42 #include "media/cast/test/utility/default_config.h"
43 #include "media/cast/test/utility/in_process_receiver.h" 43 #include "media/cast/test/utility/in_process_receiver.h"
44 #include "media/cast/test/utility/standalone_cast_environment.h" 44 #include "media/cast/test/utility/standalone_cast_environment.h"
45 #include "media/cast/test/utility/udp_proxy.h" 45 #include "media/cast/test/utility/udp_proxy.h"
46 #include "net/base/ip_address.h" 46 #include "net/base/ip_address.h"
47 #include "net/base/ip_endpoint.h" 47 #include "net/base/ip_endpoint.h"
48 #include "net/base/net_errors.h" 48 #include "net/base/net_errors.h"
49 #include "net/base/rand_callback.h" 49 #include "net/base/rand_callback.h"
50 #include "net/log/net_log_source.h" 50 #include "net/log/net_log_source.h"
51 #include "net/udp/udp_server_socket.h" 51 #include "net/socket/udp_server_socket.h"
52 #include "testing/gtest/include/gtest/gtest.h" 52 #include "testing/gtest/include/gtest/gtest.h"
53 #include "testing/perf/perf_test.h" 53 #include "testing/perf/perf_test.h"
54 #include "ui/compositor/compositor_switches.h" 54 #include "ui/compositor/compositor_switches.h"
55 #include "ui/gl/gl_switches.h" 55 #include "ui/gl/gl_switches.h"
56 56
57 namespace { 57 namespace {
58 58
59 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf"; 59 const char kExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf";
60 60
61 // Skip a few events from the beginning. 61 // Skip a few events from the beginning.
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 CastV2PerformanceTest, 661 CastV2PerformanceTest,
662 testing::Values( 662 testing::Values(
663 kUseGpu | k24fps, 663 kUseGpu | k24fps,
664 kUseGpu | k30fps, 664 kUseGpu | k30fps,
665 kUseGpu | k60fps, 665 kUseGpu | k60fps,
666 kUseGpu | k24fps | kDisableVsync, 666 kUseGpu | k24fps | kDisableVsync,
667 kUseGpu | k30fps | kProxyWifi, 667 kUseGpu | k30fps | kProxyWifi,
668 kUseGpu | k30fps | kProxyBad, 668 kUseGpu | k30fps | kProxyBad,
669 kUseGpu | k30fps | kSlowClock, 669 kUseGpu | k30fps | kSlowClock,
670 kUseGpu | k30fps | kFastClock)); 670 kUseGpu | k30fps | kFastClock));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698