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

Side by Side Diff: third_party/crashpad/crashpad/snapshot/mac/system_snapshot_mac.h

Issue 2773813002: Update Crashpad to 8e37886d418dd042c3c7bfadac99214739ee4d98 (Closed)
Patch Set: Update Crashpad to 8e37886d418dd042c3c7bfadac99214739ee4d98 Created 3 years, 9 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
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,
(...skipping 11 matching lines...) Expand all
22 #include "base/macros.h" 22 #include "base/macros.h"
23 #include "snapshot/system_snapshot.h" 23 #include "snapshot/system_snapshot.h"
24 #include "util/misc/initialization_state_dcheck.h" 24 #include "util/misc/initialization_state_dcheck.h"
25 25
26 namespace crashpad { 26 namespace crashpad {
27 27
28 class ProcessReader; 28 class ProcessReader;
29 29
30 namespace internal { 30 namespace internal {
31 31
32 //! \brief A SystemSnapshot of the running system, when the system runs Mac OS 32 //! \brief A SystemSnapshot of the running system, when the system runs macOS.
33 //! X.
34 class SystemSnapshotMac final : public SystemSnapshot { 33 class SystemSnapshotMac final : public SystemSnapshot {
35 public: 34 public:
36 SystemSnapshotMac(); 35 SystemSnapshotMac();
37 ~SystemSnapshotMac() override; 36 ~SystemSnapshotMac() override;
38 37
39 //! \brief Initializes the object. 38 //! \brief Initializes the object.
40 //! 39 //!
41 //! \param[in] process_reader A reader for the process being snapshotted. 40 //! \param[in] process_reader A reader for the process being snapshotted.
42 //! \n\n 41 //! \n\n
43 //! It seems odd that a system snapshot implementation would need a 42 //! It seems odd that a system snapshot implementation would need a
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 bool os_server_; 91 bool os_server_;
93 InitializationStateDcheck initialized_; 92 InitializationStateDcheck initialized_;
94 93
95 DISALLOW_COPY_AND_ASSIGN(SystemSnapshotMac); 94 DISALLOW_COPY_AND_ASSIGN(SystemSnapshotMac);
96 }; 95 };
97 96
98 } // namespace internal 97 } // namespace internal
99 } // namespace crashpad 98 } // namespace crashpad
100 99
101 #endif // CRASHPAD_SNAPSHOT_MAC_SYSTEM_SNAPSHOT_MAC_H_ 100 #endif // CRASHPAD_SNAPSHOT_MAC_SYSTEM_SNAPSHOT_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698