OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ | |
6 #define CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "content/public/browser/web_ui_controller.h" | |
10 #include "content/public/browser/web_ui_data_source.h" | |
11 | |
12 namespace content { | |
13 | |
14 class NetworkErrorsListingUI : public WebUIController { | |
15 public: | |
16 explicit NetworkErrorsListingUI(WebUI* web_ui); | |
jochen (gone - plz use gerrit)
2015/12/02 12:35:08
please add a virtual dtor
edwardjung
2015/12/03 11:02:53
Done.
| |
17 | |
18 private: | |
19 DISALLOW_COPY_AND_ASSIGN(NetworkErrorsListingUI); | |
20 }; | |
21 | |
22 } // namespace content | |
23 | |
24 #endif // CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ | |
OLD | NEW |