| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace chromeos { | 10 namespace chromeos { |
| 11 namespace about_ui { | 11 namespace about_ui { |
| 12 | 12 |
| 13 // Returns the HTML for chrome://network for the chromeos networks. | 13 // Returns the HTML for chrome://network for the chromeos networks. |
| 14 // |query| contains any text after 'chrome://network/', used to indicate the | 14 // |query| contains any text after 'chrome://network/', used to indicate the |
| 15 // refresh interval. | 15 // refresh interval and whether to include debug log entries. |
| 16 std::string AboutNetwork(const std::string& query); | 16 std::string AboutNetwork(const std::string& query); |
| 17 | 17 |
| 18 } // namespace about_ui | 18 } // namespace about_ui |
| 19 } // namespace chromeos | 19 } // namespace chromeos |
| 20 | 20 |
| 21 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ | 21 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_ABOUT_NETWORK_H_ |
| OLD | NEW |