OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_SHOW_OPTIONS_URL_H_ | 5 #ifndef CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_ |
6 #define CHROME_BROWSER_SHOW_OPTIONS_URL_H_ | 6 #define CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 class GURL; | 9 class GURL; |
10 class Profile; | 10 class Profile; |
11 | 11 |
12 namespace browser { | 12 namespace browser { |
13 | 13 |
14 // Opens a tab showing the specified url. This is intended for use any place | 14 // Opens a tab showing the specified url. This is intended for use any place |
15 // we show a URL in the options dialogs. | 15 // we show a URL in the options dialogs. |
16 void ShowOptionsURL(Profile* profile, const GURL& url); | 16 void ShowOptionsURL(Profile* profile, const GURL& url); |
17 | 17 |
18 } // namespace browser | 18 } // namespace browser |
19 | 19 |
20 #endif // CHROME_BROWSER_SHOW_OPTIONS_URL_H_ | 20 #endif // CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_ |
OLD | NEW |