diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 20:36:16 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-09 20:36:16 +0000 |
commit | f2c1df1039dc35288d7422e0b3e04801eba30c4e (patch) | |
tree | b3ac23e8eac634b70a19dc003cb193089958f5c7 /chrome/browser/chrome_elf_init_win.h | |
parent | 59977a953f6c8926b291739f615b284663f3bd4c (diff) | |
download | chromium_src-f2c1df1039dc35288d7422e0b3e04801eba30c4e.zip chromium_src-f2c1df1039dc35288d7422e0b3e04801eba30c4e.tar.gz chromium_src-f2c1df1039dc35288d7422e0b3e04801eba30c4e.tar.bz2 |
Use a Finch Experiment to control the Browser Blacklist
Also increase the states stored in the register to prevent
the setup code from running multiple times per version if
it fails to start one time.
BUG=329023
Review URL: https://codereview.chromium.org/120963002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243967 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_elf_init_win.h')
-rw-r--r-- | chrome/browser/chrome_elf_init_win.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/chrome/browser/chrome_elf_init_win.h b/chrome/browser/chrome_elf_init_win.h new file mode 100644 index 0000000..850a608 --- /dev/null +++ b/chrome/browser/chrome_elf_init_win.h @@ -0,0 +1,15 @@ +// Copyright 2014 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 CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ +#define CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ + +// Prepare any initialization code for Chrome Elf's setup (This will generally +// only affect future runs since Chrome Elf is already setup by this point). +void InitializeChromeElf(); + +// Set the required state for an enabled browser blacklist. +void BrowserBlacklistBeaconSetup(); + +#endif // CHROME_BROWSER_CHROME_ELF_INIT_WIN_H_ |