blob: fd5e7cfa8916d52f73eab736a59d55bf2fa09aed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2012 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_UI_STARTUP_OBSOLETE_OS_PROMPT_H_
#define CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_PROMPT_H_
#pragma once
class Browser;
namespace browser {
// Shows a warning notification in |browser| that the app is being run on an
// unsupported operating system.
void ShowObsoleteOSPrompt(Browser* browser);
} // namespace browser
#endif // CHROME_BROWSER_UI_STARTUP_OBSOLETE_OS_PROMPT_H_
|