| Index: win8/delegate_execute/chrome_util.h
|
| diff --git a/win8/delegate_execute/chrome_util.h b/win8/delegate_execute/chrome_util.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..634ce6c0fcbd0ef76183a2f29df4f1a8ad805479
|
| --- /dev/null
|
| +++ b/win8/delegate_execute/chrome_util.h
|
| @@ -0,0 +1,22 @@
|
| +// 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 WIN8_DELEGATE_EXECUTE_CHROME_UTIL_H_
|
| +#define WIN8_DELEGATE_EXECUTE_CHROME_UTIL_H_
|
| +
|
| +#include "base/string16.h"
|
| +
|
| +class FilePath;
|
| +
|
| +namespace delegate_execute {
|
| +
|
| +// Finalizes a previously updated installation.
|
| +void UpdateChromeIfNeeded(const FilePath& chrome_exe);
|
| +
|
| +// Returns the appid of the Chrome pointed to by |chrome_exe|.
|
| +string16 GetAppId(const FilePath& chrome_exe);
|
| +
|
| +} // namespace delegate_execute
|
| +
|
| +#endif // WIN8_DELEGATE_EXECUTE_CHROME_UTIL_H_
|
|
|