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

Side by Side Diff: content/browser/net/network_errors_listing_ui.h

Issue 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase Created 3 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ 5 #ifndef CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_
6 #define CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ 6 #define CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "content/public/browser/web_ui_controller.h" 9 #include "content/public/browser/web_ui_controller.h"
10 #include "content/public/browser/web_ui_data_source.h" 10 #include "content/public/browser/web_ui_data_source.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class NetworkErrorsListingUI : public WebUIController { 14 class NetworkErrorsListingUI : public WebUIController {
15 public: 15 public:
16 explicit NetworkErrorsListingUI(WebUI* web_ui); 16 explicit NetworkErrorsListingUI(WebUI* web_ui);
17 ~NetworkErrorsListingUI() override {}; 17 ~NetworkErrorsListingUI() override {}
18 18
19 private: 19 private:
20 DISALLOW_COPY_AND_ASSIGN(NetworkErrorsListingUI); 20 DISALLOW_COPY_AND_ASSIGN(NetworkErrorsListingUI);
21 }; 21 };
22 22
23 } // namespace content 23 } // namespace content
24 24
25 #endif // CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_ 25 #endif // CONTENT_BROWSER_NET_NETWORK_ERRORS_LISTING_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698