Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: base/android/library_loader/library_process_type.h

Issue 897683003: Know the process shared library loaded in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix webview compile error Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698