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

Side by Side Diff: tools/ipc_fuzzer/message_lib/message_file.h

Issue 2972773004: Remove ScopedVector from tools/ipc_fuzzer/. (Closed)
Patch Set: rev Created 3 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_ 5 #ifndef TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_
6 #define TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_ 6 #define TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_
7 7
8 #include <memory>
9 #include <vector>
10
8 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
9 #include "base/macros.h" 12 #include "base/macros.h"
10 #include "base/memory/scoped_vector.h"
11 #include "ipc/ipc_message.h" 13 #include "ipc/ipc_message.h"
12 14
13 namespace ipc_fuzzer { 15 namespace ipc_fuzzer {
14 16
15 typedef ScopedVector<IPC::Message> MessageVector; 17 typedef std::vector<std::unique_ptr<IPC::Message>> MessageVector;
Tom Sepez 2017/07/10 17:45:47 nit: move to |using| while were at it?
Avi (use Gerrit) 2017/07/10 18:44:00 Done.
16 18
17 class MessageFile { 19 class MessageFile {
18 public: 20 public:
19 static bool Read(const base::FilePath& path, MessageVector* messages); 21 static bool Read(const base::FilePath& path, MessageVector* messages);
20 static bool Write(const base::FilePath& path, const MessageVector& messages); 22 static bool Write(const base::FilePath& path, const MessageVector& messages);
21 23
22 private: 24 private:
23 DISALLOW_COPY_AND_ASSIGN(MessageFile); 25 DISALLOW_COPY_AND_ASSIGN(MessageFile);
24 }; 26 };
25 27
26 } // namespace ipc_fuzzer 28 } // namespace ipc_fuzzer
27 29
28 #endif // TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_ 30 #endif // TOOLS_IPC_FUZZER_MESSAGE_LIB_MESSAGE_FILE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698