| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |