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

Unified Diff: tools/android/forwarder2/forwarders_manager.h

Issue 2973123002: Remove ScopedVector from tools/android/. (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/android/forwarder2/forwarders_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/forwarder2/forwarders_manager.h
diff --git a/tools/android/forwarder2/forwarders_manager.h b/tools/android/forwarder2/forwarders_manager.h
index 2cdafdb0b2fab22cb0aadb9b7815c07f7ea37bfc..dd5d2b1f317568aba4517b2587cc24bbe52f94f5 100644
--- a/tools/android/forwarder2/forwarders_manager.h
+++ b/tools/android/forwarder2/forwarders_manager.h
@@ -6,8 +6,8 @@
#define TOOLS_ANDROID_FORWARDER2_FORWARDERS_MANAGER_H_
#include <memory>
+#include <vector>
-#include "base/memory/scoped_vector.h"
#include "base/threading/thread.h"
#include "tools/android/forwarder2/pipe_notifier.h"
@@ -35,7 +35,7 @@ class ForwardersManager {
void WaitForEventsOnInternalThreadSoon();
void WaitForEventsOnInternalThread();
- ScopedVector<Forwarder> forwarders_;
+ std::vector<std::unique_ptr<Forwarder>> forwarders_;
PipeNotifier deletion_notifier_;
PipeNotifier wakeup_notifier_;
base::Thread thread_;
« no previous file with comments | « no previous file | tools/android/forwarder2/forwarders_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698