| Index: content/browser/media/webrtc/webrtc_internals_ui.cc
|
| diff --git a/content/browser/media/webrtc/webrtc_internals_ui.cc b/content/browser/media/webrtc/webrtc_internals_ui.cc
|
| deleted file mode 100644
|
| index c08c9f2fdfa5c3c02a291258bb96bb91109fd65e..0000000000000000000000000000000000000000
|
| --- a/content/browser/media/webrtc/webrtc_internals_ui.cc
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -// Copyright (c) 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 "content/browser/media/webrtc/webrtc_internals_ui.h"
|
| -
|
| -#include "content/browser/media/webrtc/webrtc_internals_message_handler.h"
|
| -#include "content/grit/content_resources.h"
|
| -#include "content/public/browser/web_contents.h"
|
| -#include "content/public/browser/web_ui.h"
|
| -#include "content/public/browser/web_ui_data_source.h"
|
| -#include "content/public/common/url_constants.h"
|
| -
|
| -namespace content {
|
| -namespace {
|
| -
|
| -WebUIDataSource* CreateWebRTCInternalsHTMLSource() {
|
| - WebUIDataSource* source =
|
| - WebUIDataSource::Create(kChromeUIWebRTCInternalsHost);
|
| -
|
| - source->SetJsonPath("strings.js");
|
| - source->AddResourcePath("webrtc_internals.js", IDR_WEBRTC_INTERNALS_JS);
|
| - source->SetDefaultResource(IDR_WEBRTC_INTERNALS_HTML);
|
| - return source;
|
| -}
|
| -
|
| -} // namespace
|
| -
|
| -////////////////////////////////////////////////////////////////////////////////
|
| -//
|
| -// WebRTCInternalsUI
|
| -//
|
| -////////////////////////////////////////////////////////////////////////////////
|
| -
|
| -WebRTCInternalsUI::WebRTCInternalsUI(WebUI* web_ui)
|
| - : WebUIController(web_ui) {
|
| - web_ui->AddMessageHandler(new WebRTCInternalsMessageHandler());
|
| -
|
| - BrowserContext* browser_context =
|
| - web_ui->GetWebContents()->GetBrowserContext();
|
| - WebUIDataSource::Add(browser_context, CreateWebRTCInternalsHTMLSource());
|
| -}
|
| -
|
| -} // namespace content
|
|
|