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

Side by Side Diff: content/browser/media/webrtc_internals_browsertest.cc

Issue 14691006: Move SpawnedTestServer to its own subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort gyp Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/time.h" 6 #include "base/time.h"
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "content/public/common/content_switches.h" 8 #include "content/public/common/content_switches.h"
9 #include "content/public/test/browser_test_utils.h" 9 #include "content/public/test/browser_test_utils.h"
10 #include "content/shell/shell.h" 10 #include "content/shell/shell.h"
11 #include "content/test/content_browser_test.h" 11 #include "content/test/content_browser_test.h"
12 #include "content/test/content_browser_test_utils.h" 12 #include "content/test/content_browser_test_utils.h"
13 #include "net/test/spawned_test_server.h" 13 #include "net/test/spawned_test_server/spawned_test_server.h"
14 14
15 using std::string; 15 using std::string;
16 namespace content { 16 namespace content {
17 17
18 struct SsrcEntry { 18 struct SsrcEntry {
19 string GetSsrcAttributeString() const { 19 string GetSsrcAttributeString() const {
20 std::stringstream ss; 20 std::stringstream ss;
21 ss << "a=ssrc:" << id; 21 ss << "a=ssrc:" << id;
22 std::map<string, string>::const_iterator iter; 22 std::map<string, string>::const_iterator iter;
23 for (iter = properties.begin(); iter != properties.end(); ++iter) { 23 for (iter = properties.begin(); iter != properties.end(); ++iter) {
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 "console.log(tableContainers[i].innerHTML);" 562 "console.log(tableContainers[i].innerHTML);"
563 "}" 563 "}"
564 "}" 564 "}"
565 "window.domAutomationController.send(result);", 565 "window.domAutomationController.send(result);",
566 &result)); 566 &result));
567 567
568 EXPECT_TRUE(result); 568 EXPECT_TRUE(result);
569 } 569 }
570 570
571 } // namespace content 571 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/media/webrtc_browsertest.cc ('k') | content/browser/renderer_host/render_view_host_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698