blob: c9b0c43670573b9659e2f354937cd1ec7b6c78a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/renderer/media/cast_session.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/run_loop.h"
#include "chrome/renderer/chrome_content_renderer_client.h"
#include "chrome/test/base/chrome_render_view_test.h"
namespace chrome {
typedef ChromeRenderViewTest CastSessionBrowserTest;
// Tests that CastSession is created and destroyed properly inside
// chrome renderer.
TEST_F(CastSessionBrowserTest, CreateAndDestroy) {
chrome_render_thread_->set_io_message_loop_proxy(
base::MessageLoopProxy::current());
ChromeContentRendererClient* client =
static_cast<ChromeContentRendererClient*>(content_renderer_client_.get());
client->RenderThreadStarted();
scoped_refptr<CastSession> session(new CastSession());
// Causes CastSession to destruct.
session = NULL;
base::RunLoop().RunUntilIdle();
}
} // namespace chrome
|