blob: a03bff88846ed51f85168ed56e051155dfbd25d3 [file] [log] [blame]
// Copyright 2015 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.
#ifndef IOS_COMPONENTS_WEBUI_SYNC_INTERNALS_SYNC_INTERNALS_UI_H_
#define IOS_COMPONENTS_WEBUI_SYNC_INTERNALS_SYNC_INTERNALS_UI_H_
#include <string>
#include "base/macros.h"
#include "ios/web/public/webui/web_ui_ios_controller.h"
namespace web {
class WebUIIOS;
}
// The implementation for the chrome://sync-internals page.
class SyncInternalsUI : public web::WebUIIOSController {
public:
explicit SyncInternalsUI(web::WebUIIOS* web_ui, const std::string& host);
~SyncInternalsUI() override;
private:
DISALLOW_COPY_AND_ASSIGN(SyncInternalsUI);
};
#endif // IOS_COMPONENTS_WEBUI_SYNC_INTERNALS_SYNC_INTERNALS_UI_H_