| Index: shell/application_manager/network_fetcher.cc
|
| diff --git a/shell/application_manager/network_fetcher.cc b/shell/application_manager/network_fetcher.cc
|
| index 31caa194ce9193fe80fe0b453b50c7061b458b3f..a4a69fd2bdea8513efecf4b4750123db11ef4c68 100644
|
| --- a/shell/application_manager/network_fetcher.cc
|
| +++ b/shell/application_manager/network_fetcher.cc
|
| @@ -16,6 +16,7 @@
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| #include "base/trace_event/trace_event.h"
|
| +#include "build/build_config.h"
|
| #include "crypto/secure_hash.h"
|
| #include "crypto/sha2.h"
|
| #include "mojo/converters/url/url_type_converters.h"
|
| @@ -29,6 +30,8 @@ namespace {
|
| char kArchitecture[] = "linux-x64";
|
| #elif defined(OS_ANDROID)
|
| char kArchitecture[] = "android-arm";
|
| +#elif defined(OS_MACOSX)
|
| +char kArchitecture[] = "macosx";
|
| #else
|
| #error "Unsupported."
|
| #endif
|
|
|