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

Side by Side Diff: chrome/browser/ui/webui/omnibox/omnibox_ui.cc

Issue 1467133004: Revert of Serve mojo WebUI resources from the same origin as the WebUI itself. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/ui/webui/omnibox/omnibox_ui.h" 5 #include "chrome/browser/ui/webui/omnibox/omnibox_ui.h"
6 6
7 #include "chrome/browser/profiles/profile.h" 7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h" 8 #include "chrome/browser/ui/webui/omnibox/omnibox_ui_handler.h"
9 #include "chrome/common/url_constants.h" 9 #include "chrome/common/url_constants.h"
10 #include "content/public/browser/web_ui.h" 10 #include "content/public/browser/web_ui.h"
11 #include "content/public/browser/web_ui_controller.h" 11 #include "content/public/browser/web_ui_controller.h"
12 #include "content/public/browser/web_ui_data_source.h" 12 #include "content/public/browser/web_ui_data_source.h"
13 #include "grit/browser_resources.h" 13 #include "grit/browser_resources.h"
14 14
15 OmniboxUI::OmniboxUI(content::WebUI* web_ui) : MojoWebUIController(web_ui) { 15 OmniboxUI::OmniboxUI(content::WebUI* web_ui) : MojoWebUIController(web_ui) {
16 // Set up the chrome://omnibox/ source. 16 // Set up the chrome://omnibox/ source.
17 content::WebUIDataSource* source = 17 content::WebUIDataSource* html_source =
18 content::WebUIDataSource::Create(chrome::kChromeUIOmniboxHost); 18 content::WebUIDataSource::Create(chrome::kChromeUIOmniboxHost);
19 source->AddResourcePath("omnibox.css", IDR_OMNIBOX_CSS); 19 html_source->AddResourcePath("omnibox.css", IDR_OMNIBOX_CSS);
20 source->AddResourcePath("omnibox.js", IDR_OMNIBOX_JS); 20 html_source->AddResourcePath("omnibox.js", IDR_OMNIBOX_JS);
21 source->AddResourcePath("chrome/browser/ui/webui/omnibox/omnibox.mojom", 21 html_source->SetDefaultResource(IDR_OMNIBOX_HTML);
22 IDR_OMNIBOX_MOJO_JS);
23 source->AddMojoResources();
24 source->SetDefaultResource(IDR_OMNIBOX_HTML);
25 22
26 content::WebUIDataSource::Add(Profile::FromWebUI(web_ui), source); 23 content::WebUIDataSource::Add(Profile::FromWebUI(web_ui), html_source);
24
25 AddMojoResourcePath("chrome/browser/ui/webui/omnibox/omnibox.mojom",
26 IDR_OMNIBOX_MOJO_JS);
27 } 27 }
28 28
29 OmniboxUI::~OmniboxUI() {} 29 OmniboxUI::~OmniboxUI() {}
30 30
31 void OmniboxUI::BindUIHandler( 31 void OmniboxUI::BindUIHandler(
32 mojo::InterfaceRequest<OmniboxUIHandlerMojo> request) { 32 mojo::InterfaceRequest<OmniboxUIHandlerMojo> request) {
33 // OmniboxUIHandler deletes itself when the pipe is closed. 33 // OmniboxUIHandler deletes itself when the pipe is closed.
34 new OmniboxUIHandler(Profile::FromWebUI(web_ui()), request.Pass()); 34 new OmniboxUIHandler(Profile::FromWebUI(web_ui()), request.Pass());
35 } 35 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/mojo_web_ui_controller.cc ('k') | content/browser/webui/web_ui_data_source_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698