blob: 89d2d18cc9659c89d61a34afd986ef86a5cfe837 (
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
33
34
35
36
37
38
39
40
41
|
// 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 "base/command_line.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/common/chrome_switches.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace extensions {
class CastStreamingApiTest : public ExtensionApiTest {
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE {
ExtensionApiTest::SetUpCommandLine(command_line);
command_line->AppendSwitchASCII(
switches::kWhitelistedExtensionID,
"ddchlicdkolnonkihahngkmmmjnjlkkf");
}
virtual void SetUp() OVERRIDE {
// TODO(danakj): The GPU Video Decoder needs real GL bindings.
// crbug.com/269087
UseRealGLBindings();
// These test should be using OSMesa on CrOS, which would make this
// unneeded.
// crbug.com/313128
#if !defined(OS_CHROMEOS)
UseRealGLContexts();
#endif
ExtensionApiTest::SetUp();
}
};
// Test running the test extension for Cast Mirroring API.
IN_PROC_BROWSER_TEST_F(CastStreamingApiTest, Basics) {
ASSERT_TRUE(RunExtensionSubtest("cast_streaming", "basics.html"));
}
} // namespace extensions
|