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

Side by Side Diff: content/browser/media/webrtc_internals_ui.cc

Issue 13513004: content: Move more constants into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/media/webrtc_internals_ui.h" 5 #include "content/browser/media/webrtc_internals_ui.h"
6 6
7 #include "content/browser/media/webrtc_internals_message_handler.h" 7 #include "content/browser/media/webrtc_internals_message_handler.h"
8 #include "content/public/browser/web_contents.h" 8 #include "content/public/browser/web_contents.h"
9 #include "content/public/browser/web_ui.h" 9 #include "content/public/browser/web_ui.h"
10 #include "content/public/browser/web_ui_data_source.h" 10 #include "content/public/browser/web_ui_data_source.h"
11 #include "content/public/common/url_constants.h" 11 #include "content/public/common/url_constants.h"
12 #include "grit/content_resources.h" 12 #include "grit/content_resources.h"
13 13
14 namespace content { 14 namespace content {
15 namespace { 15 namespace {
16 16
17 WebUIDataSource* CreateWebRTCInternalsHTMLSource() { 17 WebUIDataSource* CreateWebRTCInternalsHTMLSource() {
18 WebUIDataSource* source = 18 WebUIDataSource* source =
19 WebUIDataSource::Create(chrome::kChromeUIWebRTCInternalsHost); 19 WebUIDataSource::Create(kChromeUIWebRTCInternalsHost);
20 20
21 source->SetJsonPath("strings.js"); 21 source->SetJsonPath("strings.js");
22 source->AddResourcePath("webrtc_internals.js", IDR_WEBRTC_INTERNALS_JS); 22 source->AddResourcePath("webrtc_internals.js", IDR_WEBRTC_INTERNALS_JS);
23 source->SetDefaultResource(IDR_WEBRTC_INTERNALS_HTML); 23 source->SetDefaultResource(IDR_WEBRTC_INTERNALS_HTML);
24 return source; 24 return source;
25 } 25 }
26 26
27 } // namespace 27 } // namespace
28 28
29 //////////////////////////////////////////////////////////////////////////////// 29 ////////////////////////////////////////////////////////////////////////////////
30 // 30 //
31 // WebRTCInternalsUI 31 // WebRTCInternalsUI
32 // 32 //
33 //////////////////////////////////////////////////////////////////////////////// 33 ////////////////////////////////////////////////////////////////////////////////
34 34
35 WebRTCInternalsUI::WebRTCInternalsUI(WebUI* web_ui) 35 WebRTCInternalsUI::WebRTCInternalsUI(WebUI* web_ui)
36 : WebUIController(web_ui) { 36 : WebUIController(web_ui) {
37 web_ui->AddMessageHandler(new WebRTCInternalsMessageHandler()); 37 web_ui->AddMessageHandler(new WebRTCInternalsMessageHandler());
38 38
39 BrowserContext* browser_context = 39 BrowserContext* browser_context =
40 web_ui->GetWebContents()->GetBrowserContext(); 40 web_ui->GetWebContents()->GetBrowserContext();
41 WebUIDataSource::Add(browser_context, CreateWebRTCInternalsHTMLSource()); 41 WebUIDataSource::Add(browser_context, CreateWebRTCInternalsHTMLSource());
42 } 42 }
43 43
44 } // namespace content 44 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/media/media_internals_ui.cc ('k') | content/browser/net/view_blob_internals_job_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698