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 <stddef.h> |
| 6 |
5 #include <string> | 7 #include <string> |
6 #include <vector> | 8 #include <vector> |
7 | 9 |
8 #include "base/location.h" | 10 #include "base/location.h" |
9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
10 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
11 #include "base/single_thread_task_runner.h" | 13 #include "base/single_thread_task_runner.h" |
12 #include "base/strings/utf_string_conversions.h" | 14 #include "base/strings/utf_string_conversions.h" |
13 #include "base/thread_task_runner_handle.h" | 15 #include "base/thread_task_runner_handle.h" |
14 #include "base/values.h" | 16 #include "base/values.h" |
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 EXPECT_CALL(*mock_tracker_.get(), | 996 EXPECT_CALL(*mock_tracker_.get(), |
995 TrackCreateDTMFSender(pc_handler_.get(), | 997 TrackCreateDTMFSender(pc_handler_.get(), |
996 testing::Ref(tracks[0]))); | 998 testing::Ref(tracks[0]))); |
997 | 999 |
998 scoped_ptr<blink::WebRTCDTMFSenderHandler> sender( | 1000 scoped_ptr<blink::WebRTCDTMFSenderHandler> sender( |
999 pc_handler_->createDTMFSender(tracks[0])); | 1001 pc_handler_->createDTMFSender(tracks[0])); |
1000 EXPECT_TRUE(sender.get()); | 1002 EXPECT_TRUE(sender.get()); |
1001 } | 1003 } |
1002 | 1004 |
1003 } // namespace content | 1005 } // namespace content |
OLD | NEW |