Chromium Code Reviews| Index: chrome_frame/chrome_frame_helper_util.h |
| =================================================================== |
| --- chrome_frame/chrome_frame_helper_util.h (revision 86605) |
| +++ chrome_frame/chrome_frame_helper_util.h (working copy) |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2011 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. |
| @@ -68,4 +68,21 @@ |
| DWORD thread_id_to_match, |
| DWORD process_id_to_match); |
| +// Reads |value_size| characters from a value named |value_name| in |key| and |
| +// places them in the buffer pointed to by |value|. Returns ERROR_SUCCESS on |
| +// success. |
| +LONG ReadValue(HKEY key, |
| + const wchar_t* value_name, |
| + size_t value_size, |
| + wchar_t* value); |
| + |
| + |
| +// Returns true if our BHO is registered in the HKLM subkey that IE checks for |
| +// the list of BHOs to load. |
| +bool IsBHOLoadingPolicyRegistered(); |
| + |
| +// Returns true if system-level Chrome Frame is installed and the BHO is |
|
grt (UTC plus 2)
2011/05/26 17:08:58
This should be simply "Returns true if system-leve
robertshield
2011/05/27 03:34:59
Stale comment, fixed, thanks.
|
| +// registered in HKLM. |
| +bool IsSystemLevelChromeFrameInstalled(); |
| + |
| #endif // CHROME_FRAME_CHROME_FRAME_HELPER_UTIL_H_ |