diff options
Diffstat (limited to 'chrome/browser/remoting/setup.h')
-rw-r--r-- | chrome/browser/remoting/setup.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/browser/remoting/setup.h b/chrome/browser/remoting/setup.h new file mode 100644 index 0000000..a365647 --- /dev/null +++ b/chrome/browser/remoting/setup.h @@ -0,0 +1,19 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_REMOTING_SETUP_H_ +#define CHROME_BROWSER_REMOTING_SETUP_H_ + +#include "base/string16.h" + +class Profile; + +namespace remoting_setup { + +// Open the appropriate setup dialog for the given profile (which can be +// incognito). +void OpenRemotingSetupDialog(Profile* profile); +} // namespace remoting_setup + +#endif // CHROME_BROWSER_REMOTING_SETUP_H_ |