Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / extensions / browser / api / cast_channel / test_util.cc
blob83b0bb5addfcd29a6c4cfa205bb356b2b4160564
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
3 // found in the LICENSE file.
5 #include "extensions/browser/api/cast_channel/test_util.h"
7 namespace extensions {
8 namespace core_api {
9 namespace cast_channel {
11 MockCastTransport::MockCastTransport() {
13 MockCastTransport::~MockCastTransport() {
16 net::IPEndPoint CreateIPEndPointForTest() {
17 net::IPAddressNumber number;
18 number.push_back(192);
19 number.push_back(168);
20 number.push_back(1);
21 number.push_back(1);
22 return net::IPEndPoint(number, 8009);
25 } // namespace cast_channel
26 } // namespace core_api
27 } // namespace extensions