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

Unified Diff: content/renderer/mojo_context_state.h

Issue 2705073003: Remove ScopedVector from content/renderer/. (Closed)
Patch Set: Rebase only Created 3 years, 10 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 | « content/renderer/media/webrtc/media_stream_track_metrics.cc ('k') | content/renderer/mojo_context_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/mojo_context_state.h
diff --git a/content/renderer/mojo_context_state.h b/content/renderer/mojo_context_state.h
index f7c7e6795d176d8fcc665719148710e19e2a8eaf..1af69b7766bbdc14f7bc4524d0036a59c6a85bc9 100644
--- a/content/renderer/mojo_context_state.h
+++ b/content/renderer/mojo_context_state.h
@@ -8,9 +8,9 @@
#include <memory>
#include <set>
#include <string>
+#include <vector>
#include "base/macros.h"
-#include "base/memory/scoped_vector.h"
#include "gin/modules/module_registry_observer.h"
#include "v8/include/v8.h"
@@ -70,7 +70,7 @@ class MojoContextState : public gin::ModuleRegistryObserver {
std::unique_ptr<MojoMainRunner> runner_;
// Set of fetchers we're waiting on to download script.
- ScopedVector<ResourceFetcher> module_fetchers_;
+ std::vector<std::unique_ptr<ResourceFetcher>> module_fetchers_;
// Set of modules we've fetched script from.
std::set<std::string> fetched_modules_;
« no previous file with comments | « content/renderer/media/webrtc/media_stream_track_metrics.cc ('k') | content/renderer/mojo_context_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698