| OLD | NEW |
| 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/sync_internals_ui.h" | 5 #include "chrome/browser/ui/webui/sync_internals_ui.h" |
| 6 | 6 |
| 7 #include "chrome/browser/profiles/profile.h" | 7 #include "chrome/browser/profiles/profile.h" |
| 8 #include "chrome/browser/ui/webui/sync_internals_message_handler.h" | 8 #include "chrome/browser/ui/webui/sync_internals_message_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_data_source.h" | 11 #include "content/public/browser/web_ui_data_source.h" |
| 12 #include "grit/sync_internals_resources.h" | 12 #include "grit/sync_internals_resources.h" |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 content::WebUIDataSource* CreateSyncInternalsHTMLSource() { | 16 content::WebUIDataSource* CreateSyncInternalsHTMLSource() { |
| 17 content::WebUIDataSource* source = | 17 content::WebUIDataSource* source = |
| 18 content::WebUIDataSource::Create(chrome::kChromeUISyncInternalsHost); | 18 content::WebUIDataSource::Create(chrome::kChromeUISyncInternalsHost); |
| 19 | 19 |
| 20 source->SetUseJsonJSFormatV2(); | |
| 21 source->SetJsonPath("strings.js"); | 20 source->SetJsonPath("strings.js"); |
| 22 source->AddResourcePath("sync_index.js", IDR_SYNC_INTERNALS_INDEX_JS); | 21 source->AddResourcePath("sync_index.js", IDR_SYNC_INTERNALS_INDEX_JS); |
| 23 source->AddResourcePath("chrome_sync.js", | 22 source->AddResourcePath("chrome_sync.js", |
| 24 IDR_SYNC_INTERNALS_CHROME_SYNC_JS); | 23 IDR_SYNC_INTERNALS_CHROME_SYNC_JS); |
| 25 source->AddResourcePath("types.js", IDR_SYNC_INTERNALS_TYPES_JS); | 24 source->AddResourcePath("types.js", IDR_SYNC_INTERNALS_TYPES_JS); |
| 26 source->AddResourcePath("sync_log.js", IDR_SYNC_INTERNALS_SYNC_LOG_JS); | 25 source->AddResourcePath("sync_log.js", IDR_SYNC_INTERNALS_SYNC_LOG_JS); |
| 27 source->AddResourcePath("sync_node_browser.js", | 26 source->AddResourcePath("sync_node_browser.js", |
| 28 IDR_SYNC_INTERNALS_SYNC_NODE_BROWSER_JS); | 27 IDR_SYNC_INTERNALS_SYNC_NODE_BROWSER_JS); |
| 29 source->AddResourcePath("sync_search.js", | 28 source->AddResourcePath("sync_search.js", |
| 30 IDR_SYNC_INTERNALS_SYNC_SEARCH_JS); | 29 IDR_SYNC_INTERNALS_SYNC_SEARCH_JS); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 41 SyncInternalsUI::SyncInternalsUI(content::WebUI* web_ui) | 40 SyncInternalsUI::SyncInternalsUI(content::WebUI* web_ui) |
| 42 : WebUIController(web_ui) { | 41 : WebUIController(web_ui) { |
| 43 Profile* profile = Profile::FromWebUI(web_ui); | 42 Profile* profile = Profile::FromWebUI(web_ui); |
| 44 content::WebUIDataSource::Add(profile, CreateSyncInternalsHTMLSource()); | 43 content::WebUIDataSource::Add(profile, CreateSyncInternalsHTMLSource()); |
| 45 | 44 |
| 46 web_ui->AddMessageHandler(new SyncInternalsMessageHandler); | 45 web_ui->AddMessageHandler(new SyncInternalsMessageHandler); |
| 47 } | 46 } |
| 48 | 47 |
| 49 SyncInternalsUI::~SyncInternalsUI() {} | 48 SyncInternalsUI::~SyncInternalsUI() {} |
| 50 | 49 |
| OLD | NEW |