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
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_
6#define CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_
7#pragma once
8
9class GURL;
10class Profile;
11
12namespace browser {
13
14// Opens a tab showing the specified url. This is intended for use any place
15// we show a URL in the options dialogs.
16void ShowOptionsURL(Profile* profile, const GURL& url);
17
18}  // namespace browser
19
20#endif  // CHROME_BROWSER_UI_OPTIONS_SHOW_OPTIONS_URL_H_
21