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

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

Issue 641603006: Add MinidumpMemoryListWriter::AddFromSnapshot(), everything downstream and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Correctly look for the last memory range at EOF Created 6 years, 1 month 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/snapshot.gyp ('k') | snapshot/test/test_memory_snapshot.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_
16 #define CRASHPAD_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_
17
18 #include <stdint.h>
19 #include <sys/types.h>
20
21 #include "base/basictypes.h"
22 #include "snapshot/memory_snapshot.h"
23
24 namespace crashpad {
25 namespace test {
26
27 //! \brief A test MemorySnapshot that can carry arbitrary data for testing
28 //! purposes.
29 class TestMemorySnapshot final : public MemorySnapshot {
30 public:
31 TestMemorySnapshot();
32 ~TestMemorySnapshot();
33
34 void SetAddress(uint64_t address) { address_ = address; }
35 void SetSize(size_t size) { size_ = size; }
36
37 //! \brief Sets the value to fill the test memory region with.
38 //!
39 //! \param[in] value The value to be written to \a delegate when Read() is
40 //! called. This value will be repeated Size() times.
41 void SetValue(char value) { value_ = value; }
42
43 // MemorySnapshot:
44
45 uint64_t Address() const override;
46 size_t Size() const override;
47 bool Read(Delegate* delegate) const override;
48
49 private:
50 uint64_t address_;
51 size_t size_;
52 char value_;
53
54 DISALLOW_COPY_AND_ASSIGN(TestMemorySnapshot);
55 };
56
57 } // namespace test
58 } // namespace crashpad
59
60 #endif // CRASHPAD_SNAPSHOT_TEST_TEST_MEMORY_SNAPSHOT_H_
OLDNEW
« no previous file with comments | « snapshot/snapshot.gyp ('k') | snapshot/test/test_memory_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698