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

Side by Side Diff: snapshot/test/test_thread_snapshot.h

Issue 1513573005: Provide std::move() in compat instead of using crashpad::move() (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years 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 | « snapshot/test/test_process_snapshot.h ('k') | test/win/win_child_process.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_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_ 15 #ifndef CRASHPAD_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_
16 #define CRASHPAD_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_ 16 #define CRASHPAD_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_
17 17
18 #include <stdint.h> 18 #include <stdint.h>
19 19
20 #include <utility>
20 #include <vector> 21 #include <vector>
21 22
22 #include "base/basictypes.h" 23 #include "base/basictypes.h"
23 #include "base/memory/scoped_ptr.h" 24 #include "base/memory/scoped_ptr.h"
24 #include "snapshot/cpu_context.h" 25 #include "snapshot/cpu_context.h"
25 #include "snapshot/memory_snapshot.h" 26 #include "snapshot/memory_snapshot.h"
26 #include "snapshot/thread_snapshot.h" 27 #include "snapshot/thread_snapshot.h"
27 #include "util/stdlib/move.h"
28 #include "util/stdlib/pointer_container.h" 28 #include "util/stdlib/pointer_container.h"
29 29
30 namespace crashpad { 30 namespace crashpad {
31 namespace test { 31 namespace test {
32 32
33 //! \brief A test ThreadSnapshot that can carry arbitrary data for testing 33 //! \brief A test ThreadSnapshot that can carry arbitrary data for testing
34 //! purposes. 34 //! purposes.
35 class TestThreadSnapshot final : public ThreadSnapshot { 35 class TestThreadSnapshot final : public ThreadSnapshot {
36 public: 36 public:
37 TestThreadSnapshot(); 37 TestThreadSnapshot();
(...skipping 11 matching lines...) Expand all
49 //! data so that a caller can populate the context structure directly. 49 //! data so that a caller can populate the context structure directly.
50 //! This is done because providing setter interfaces to each field in the 50 //! This is done because providing setter interfaces to each field in the
51 //! context structure would be unwieldy and cumbersome. Care must be taken 51 //! context structure would be unwieldy and cumbersome. Care must be taken
52 //! to populate the context structure correctly. 52 //! to populate the context structure correctly.
53 CPUContext* MutableContext() { return &context_; } 53 CPUContext* MutableContext() { return &context_; }
54 54
55 //! \brief Sets the memory region to be returned by Stack(). 55 //! \brief Sets the memory region to be returned by Stack().
56 //! 56 //!
57 //! \param[in] stack The memory region that Stack() will return. The 57 //! \param[in] stack The memory region that Stack() will return. The
58 //! TestThreadSnapshot object takes ownership of \a stack. 58 //! TestThreadSnapshot object takes ownership of \a stack.
59 void SetStack(scoped_ptr<MemorySnapshot> stack) { 59 void SetStack(scoped_ptr<MemorySnapshot> stack) { stack_ = std::move(stack); }
60 stack_ = crashpad::move(stack);
61 }
62 60
63 void SetThreadID(uint64_t thread_id) { thread_id_ = thread_id; } 61 void SetThreadID(uint64_t thread_id) { thread_id_ = thread_id; }
64 void SetSuspendCount(int suspend_count) { suspend_count_ = suspend_count; } 62 void SetSuspendCount(int suspend_count) { suspend_count_ = suspend_count; }
65 void SetPriority(int priority) { priority_ = priority; } 63 void SetPriority(int priority) { priority_ = priority; }
66 void SetThreadSpecificDataAddress(uint64_t thread_specific_data_address) { 64 void SetThreadSpecificDataAddress(uint64_t thread_specific_data_address) {
67 thread_specific_data_address_ = thread_specific_data_address; 65 thread_specific_data_address_ = thread_specific_data_address;
68 } 66 }
69 67
70 //! \brief Add a memory snapshot to be returned by ExtraMemory(). 68 //! \brief Add a memory snapshot to be returned by ExtraMemory().
71 //! 69 //!
(...skipping 27 matching lines...) Expand all
99 uint64_t thread_specific_data_address_; 97 uint64_t thread_specific_data_address_;
100 PointerVector<MemorySnapshot> extra_memory_; 98 PointerVector<MemorySnapshot> extra_memory_;
101 99
102 DISALLOW_COPY_AND_ASSIGN(TestThreadSnapshot); 100 DISALLOW_COPY_AND_ASSIGN(TestThreadSnapshot);
103 }; 101 };
104 102
105 } // namespace test 103 } // namespace test
106 } // namespace crashpad 104 } // namespace crashpad
107 105
108 #endif // CRASHPAD_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_ 106 #endif // CRASHPAD_SNAPSHOT_TEST_TEST_THREAD_SNAPSHOT_H_
OLDNEW
« no previous file with comments | « snapshot/test/test_process_snapshot.h ('k') | test/win/win_child_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698