blob: 05f5543eb723feba4aa433ca0f6614605e08e285 [file] [log] [blame]
// Copyright 2010 Google Inc. All Rights Reserved.
// Use of this source code is governed by an Apache-style license that can be
// found in the COPYING file.
//
// A helper library to keep track of a user's key by SID.
// Used by RLZ libary. Also to be used by SearchWithGoogle library.
#ifndef RLZ_WIN_LIB_USER_KEY_H_
#define RLZ_WIN_LIB_USER_KEY_H_
#include "base/win/registry.h"
namespace rlz_lib {
class UserKey {
public:
UserKey();
HKEY Get();
bool HasAccess(bool write_access);
};
} // namespace rlz_lib
#endif // RLZ_WIN_LIB_USER_KEY_H_