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

Side by Side Diff: third_party/crashpad/crashpad/third_party/zlib/zlib_crashpad.h

Issue 2710663006: Update Crashpad to 4a2043ea65e2641ef1a921801c0aaa15ada02fc7 (Closed)
Patch Set: Update Crashpad to 4a2043ea65e2 Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Crashpad Authors. All rights reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #ifndef CRASHPAD_THIRD_PARTY_ZLIB_ZLIB_CRASHPAD_H_
16 #define CRASHPAD_THIRD_PARTY_ZLIB_ZLIB_CRASHPAD_H_
17
18 // #include this file instead of the system version of <zlib.h> or equivalent
19 // available at any other location in the source tree. It will #include the
20 // proper <zlib.h> depending on how the build has been configured.
21
22 #if defined(CRASHPAD_ZLIB_SOURCE_SYSTEM)
23 #include <zlib.h>
24 #elif defined(CRASHPAD_ZLIB_SOURCE_EMBEDDED)
25 #include "third_party/zlib/zlib/zlib.h"
26 #elif defined(CRASHPAD_ZLIB_SOURCE_CHROMIUM)
27 #include "third_party/zlib/zlib.h"
28 #else
29 #error Unknown zlib source
30 #endif
31
32 #endif // CRASHPAD_THIRD_PARTY_ZLIB_ZLIB_CRASHPAD_H_
OLDNEW
« no previous file with comments | « third_party/crashpad/crashpad/third_party/zlib/zlib.gyp ('k') | third_party/crashpad/crashpad/util/misc/metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698