| Index: base/android/library_loader/library_process_type.h
|
| diff --git a/base/android/library_loader/library_process_type.h b/base/android/library_loader/library_process_type.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c92b2e16c165d35684c981fa9567fa6e4c814cd5
|
| --- /dev/null
|
| +++ b/base/android/library_loader/library_process_type.h
|
| @@ -0,0 +1,18 @@
|
| +// Copyright 2015 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.
|
| +
|
| +// This file intentionally does not have header guards, it's included
|
| +// inside a macro to generate enum values.
|
| +
|
| +namespace base {
|
| +namespace android {
|
| +
|
| +enum LibraryProcessType {
|
| +#define LIBRARY_PROCESS_TYPE(name, value) name = value,
|
| +#include "base/android/library_loader/library_process_type_list.h"
|
| +#undef LIBRARY_PROCESS_TYPE
|
| +};
|
| +
|
| +} // namespace android
|
| +} // namespace base
|
|
|