Add ability to gather metrics to BubbleManager.
[chromium-blink-merge.git] / chrome / browser / ui / webui / sync_internals_ui.cc
blobc2b6d9be7be1e93ee45a8c0c1a1c5f0426e1ed50
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
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/webui/sync_internals_ui.h"
7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/ui/webui/sync_internals_message_handler.h"
9 #include "chrome/common/url_constants.h"
10 #include "content/public/browser/web_ui.h"
11 #include "content/public/browser/web_ui_data_source.h"
12 #include "grit/sync_internals_resources.h"
14 namespace {
16 content::WebUIDataSource* CreateSyncInternalsHTMLSource() {
17 content::WebUIDataSource* source =
18 content::WebUIDataSource::Create(chrome::kChromeUISyncInternalsHost);
20 source->SetJsonPath("strings.js");
21 source->AddResourcePath("sync_index.js", IDR_SYNC_INTERNALS_INDEX_JS);
22 source->AddResourcePath("chrome_sync.js",
23 IDR_SYNC_INTERNALS_CHROME_SYNC_JS);
24 source->AddResourcePath("types.js", IDR_SYNC_INTERNALS_TYPES_JS);
25 source->AddResourcePath("sync_log.js", IDR_SYNC_INTERNALS_SYNC_LOG_JS);
26 source->AddResourcePath("sync_node_browser.js",
27 IDR_SYNC_INTERNALS_SYNC_NODE_BROWSER_JS);
28 source->AddResourcePath("sync_search.js",
29 IDR_SYNC_INTERNALS_SYNC_SEARCH_JS);
30 source->AddResourcePath("about.js", IDR_SYNC_INTERNALS_ABOUT_JS);
31 source->AddResourcePath("data.js", IDR_SYNC_INTERNALS_DATA_JS);
32 source->AddResourcePath("events.js", IDR_SYNC_INTERNALS_EVENTS_JS);
33 source->AddResourcePath("search.js", IDR_SYNC_INTERNALS_SEARCH_JS);
34 source->SetDefaultResource(IDR_SYNC_INTERNALS_INDEX_HTML);
35 return source;
38 } // namespace
40 SyncInternalsUI::SyncInternalsUI(content::WebUI* web_ui)
41 : WebUIController(web_ui) {
42 Profile* profile = Profile::FromWebUI(web_ui);
43 content::WebUIDataSource::Add(profile, CreateSyncInternalsHTMLSource());
45 web_ui->AddMessageHandler(new SyncInternalsMessageHandler);
48 SyncInternalsUI::~SyncInternalsUI() {}