Skip to content

Commit

Permalink
Disable google update in non-official mode
Browse files Browse the repository at this point in the history
|kUseGoogleUpdateIntegration| should be false in non-official mode.
  • Loading branch information
simonhong committed May 30, 2018
1 parent faea1f6 commit 12564dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions chromium_src/chrome/install_static/chromium_install_modes.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
namespace install_static {

enum : bool {
#if defined(OFFICIAL_BUILD)
kUseGoogleUpdateIntegration = true,
#else
kUseGoogleUpdateIntegration = false,
#endif
};

// Note: This list of indices must be kept in sync with the brand-specific
Expand Down

0 comments on commit 12564dd

Please sign in to comment.