Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1846)

Unified Diff: chrome/browser/extensions/webrtc_cast_apitest.cc

Issue 90083002: Cast Extensions API: Major namespace and object renaming (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit_tests Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/cast_streaming_apitest.cc ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/webrtc_cast_apitest.cc
diff --git a/chrome/browser/extensions/webrtc_cast_apitest.cc b/chrome/browser/extensions/webrtc_cast_apitest.cc
deleted file mode 100644
index 3fee7f85efa200bd9f6cb7f7254727928d489d77..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/webrtc_cast_apitest.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// 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 WebrtcCastApiTest : 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(WebrtcCastApiTest, Basics) {
- ASSERT_TRUE(RunExtensionSubtest("webrtc_cast", "basics.html"));
-}
-
-} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/cast_streaming_apitest.cc ('k') | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698