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

Side by Side Diff: util/mach/exception_ports.h

Issue 1566713002: Use base/macros.h instead of base/basictypes.h (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Windows #incldue → #include Created 4 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 unified diff | Download patch
« no previous file with comments | « util/mach/exception_behaviors_test.cc ('k') | util/mach/exception_ports_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Crashpad Authors. All rights reserved. 1 // Copyright 2014 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with 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 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and 12 // See the License for the specific language governing permissions and
13 // limitations under the License. 13 // limitations under the License.
14 14
15 #ifndef CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ 15 #ifndef CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_
16 #define CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ 16 #define CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_
17 17
18 #include <mach/mach.h> 18 #include <mach/mach.h>
19 19
20 #include <vector> 20 #include <vector>
21 21
22 #include "base/basictypes.h" 22 #include "base/macros.h"
23 23
24 namespace crashpad { 24 namespace crashpad {
25 25
26 //! \brief A better interface to `*_get_exception_ports()` and 26 //! \brief A better interface to `*_get_exception_ports()` and
27 //! `*_set_exception_ports()`. 27 //! `*_set_exception_ports()`.
28 //! 28 //!
29 //! The same generic interface can be used to operate on host, task, and thread 29 //! The same generic interface can be used to operate on host, task, and thread
30 //! exception ports. The “get” interface is superior to the system’s native 30 //! exception ports. The “get” interface is superior to the system’s native
31 //! interface because it keeps related data about a single exception handler 31 //! interface because it keeps related data about a single exception handler
32 //! together in one struct, rather than separating it into four parallel arrays. 32 //! together in one struct, rather than separating it into four parallel arrays.
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 // even with a TASK_NULL target_port, because it is incorrect to deallocate 209 // even with a TASK_NULL target_port, because it is incorrect to deallocate
210 // the result of mach_task_self(). 210 // the result of mach_task_self().
211 bool dealloc_target_port_; 211 bool dealloc_target_port_;
212 212
213 DISALLOW_COPY_AND_ASSIGN(ExceptionPorts); 213 DISALLOW_COPY_AND_ASSIGN(ExceptionPorts);
214 }; 214 };
215 215
216 } // namespace crashpad 216 } // namespace crashpad
217 217
218 #endif // CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_ 218 #endif // CRASHPAD_UTIL_MACH_EXCEPTION_PORTS_H_
OLDNEW
« no previous file with comments | « util/mach/exception_behaviors_test.cc ('k') | util/mach/exception_ports_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698