1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROME_INSTALLER_GCAPI_GCAPI_OMAHA_EXPERIMENT_H_ 6 #define CHROME_INSTALLER_GCAPI_GCAPI_OMAHA_EXPERIMENT_H_ 7 8 // Writes a reactivation brand code experiment label in the Chrome product and 9 // binaries registry keys for |brand_code|. This experiment label will have a 10 // expiration date of now plus one year. If |shell_mode| is set to 11 // GCAPI_INVOKED_UAC_ELEVATION, the value will be written to HKLM, otherwise 12 // HKCU. 13 bool SetReactivationExperimentLabels(const wchar_t* brand_code, int shell_mode); 14 15 #endif // CHROME_INSTALLER_GCAPI_GCAPI_OMAHA_EXPERIMENT_H_ 16