| Index: chrome/browser/extensions/install_signer.cc
|
| diff --git a/chrome/browser/extensions/install_signer.cc b/chrome/browser/extensions/install_signer.cc
|
| index a7a085af50fa53565ccfac86ebca8be8547304c5..bc584ad26d8fad2f8970a5941ded908648a7839e 100644
|
| --- a/chrome/browser/extensions/install_signer.cc
|
| +++ b/chrome/browser/extensions/install_signer.cc
|
| @@ -34,9 +34,10 @@
|
| #include "net/url_request/url_fetcher_delegate.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
| #include "net/url_request/url_request_status.h"
|
| +#include "rlz/features/features.h"
|
| #include "url/gurl.h"
|
|
|
| -#if defined(ENABLE_RLZ)
|
| +#if BUILDFLAG(ENABLE_RLZ)
|
| #include "rlz/lib/machine_id.h"
|
| #endif
|
|
|
| @@ -84,7 +85,7 @@ GURL GetBackendUrl() {
|
| // |result|.
|
| bool HashWithMachineId(const std::string& salt, std::string* result) {
|
| std::string machine_id;
|
| -#if defined(ENABLE_RLZ)
|
| +#if BUILDFLAG(ENABLE_RLZ)
|
| if (!rlz_lib::GetMachineId(&machine_id))
|
| return false;
|
| #else
|
|
|