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

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

Issue 47343005: Data type conversion between extensions API and Cast API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed comments Created 7 years, 1 month 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 | « no previous file | chrome/common/extensions/api/webrtc_cast_send_transport.idl » ('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
index d551fe0f34f22736c9adafe4210f6e84e260ae87..9bd7829eb4d6c7bc76d557bc5f725f77dc093b68 100644
--- a/chrome/browser/extensions/webrtc_cast_apitest.cc
+++ b/chrome/browser/extensions/webrtc_cast_apitest.cc
@@ -2,12 +2,20 @@
// 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");
+ }
};
// Test running the test extension for Cast Mirroring API.
« no previous file with comments | « no previous file | chrome/common/extensions/api/webrtc_cast_send_transport.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698