| 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
|
| deleted file mode 100644
|
| index 8428a66ac42b874288d9441f9110050082058c8a..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/ui/webui/sync_file_system_internals_ui.cc
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -// 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 "chrome/browser/profiles/profile.h"
|
| -#include "chrome/common/url_constants.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"
|
| -
|
| -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());
|
| -}
|
| -
|
| -SyncFileSystemInternalsUI::~SyncFileSystemInternalsUI() {}
|
|
|