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

Unified Diff: chrome/browser/ui/webui/sync_file_system_internals_ui.cc

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tzik review #1 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/sync_file_system_internals_ui.cc
diff --git a/chrome/browser/ui/webui/sync_file_system_internals_ui.cc b/chrome/browser/ui/webui/sync_file_system_internals_ui.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e73525b1367795612ba0f906ce9b7e38ba2e2919
--- /dev/null
+++ b/chrome/browser/ui/webui/sync_file_system_internals_ui.cc
@@ -0,0 +1,37 @@
+// Copyright 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 "chrome/browser/ui/webui/sync_file_system_internals_ui.h"
+
+#include <string>
+
+#include "chrome/browser/profiles/profile.h"
+#include "chrome/common/url_constants.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 "grit/sync_file_system_internals_resources.h"
+#include "ui/base/l10n/l10n_util.h"
+#include "ui/base/resource/resource_bundle.h"
+
+using content::WebContents;
+
+namespace {
+
+content::WebUIDataSource* CreateSyncFileSystemInternalsHTMLSource() {
+ content::WebUIDataSource* source =
+ content::WebUIDataSource::Create(
+ chrome::kChromeUISyncFileSystemInternalsHost);
+ source->SetDefaultResource(IDR_SYNC_FILE_SYSTEM_INTERNALS_MAIN_HTML);
+ return source;
+}
+
+} // namespace
+
+SyncFileSystemInternalsUI::SyncFileSystemInternalsUI(content::WebUI* web_ui)
+ : WebUIController(web_ui) {
+ Profile* profile = Profile::FromWebUI(web_ui);
+ content::WebUIDataSource::Add(profile,
+ CreateSyncFileSystemInternalsHTMLSource());
+}

Powered by Google App Engine
This is Rietveld 408576698