Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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. | |
| 4 | |
| 5 #ifndef IOS_CHROME_BROWSER_UI_WEBUI_SITE_TILES_INTERNALS_UI_H_ | |
| 6 #define IOS_CHROME_BROWSER_UI_WEBUI_SITE_TILES_INTERNALS_UI_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "ios/web/public/webui/web_ui_ios_controller.h" | |
| 12 | |
| 13 // The WebUI handler for chrome://physical-web. | |
|
noyau (Ping after 24h)
2016/12/08 15:51:12
Change the comment.
sfiera
2016/12/08 16:44:35
Done.
| |
| 14 class SiteTilesInternalsUI : public web::WebUIIOSController { | |
| 15 public: | |
| 16 explicit SiteTilesInternalsUI(web::WebUIIOS* web_ui); | |
| 17 ~SiteTilesInternalsUI() override; | |
| 18 | |
| 19 private: | |
| 20 DISALLOW_COPY_AND_ASSIGN(SiteTilesInternalsUI); | |
| 21 }; | |
| 22 | |
| 23 #endif // IOS_CHROME_BROWSER_UI_WEBUI_SITE_TILES_INTERNALS_UI_H_ | |
| OLD | NEW |