diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 18:24:52 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-07 18:24:52 +0000 |
commit | 4475892162b7069ec333f3fc64d086ba3957b752 (patch) | |
tree | 5f85c72235b6425bc20fbf48da693003cf295d7d /win8/delegate_execute/chrome_util.h | |
parent | e6f1a6fbcc8869e27697b2bb548aa61e58f969a5 (diff) | |
download | chromium_src-4475892162b7069ec333f3fc64d086ba3957b752.zip chromium_src-4475892162b7069ec333f3fc64d086ba3957b752.tar.gz chromium_src-4475892162b7069ec333f3fc64d086ba3957b752.tar.bz2 |
Integrate the Windows 8 code into the Chromium tree.
BUG=127799
TEST=A Chromium build can run as the immersive browser on Windows 8.
Review URL: https://chromiumcodereview.appspot.com/10875008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155429 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8/delegate_execute/chrome_util.h')
-rw-r--r-- | win8/delegate_execute/chrome_util.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/win8/delegate_execute/chrome_util.h b/win8/delegate_execute/chrome_util.h new file mode 100644 index 0000000..634ce6c --- /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_ |