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

Unified Diff: content/public/browser/navigation_controller.h

Issue 1440573003: Remove ScopedVector from NavigationController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/navigation_controller.h
diff --git a/content/public/browser/navigation_controller.h b/content/public/browser/navigation_controller.h
index af1b3b97dea08307b75f1b384f59e0260f54e91f..ac52ae13188730ea99ccac05ab66dac907d788c5 100644
--- a/content/public/browser/navigation_controller.h
+++ b/content/public/browser/navigation_controller.h
@@ -10,7 +10,6 @@
#include <vector>
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_vector.h"
#include "base/strings/string16.h"
#include "content/common/content_export.h"
#include "content/public/browser/global_request_id.h"
@@ -227,7 +226,7 @@ class NavigationController {
// restore.
virtual void Restore(int selected_navigation,
RestoreType type,
- ScopedVector<NavigationEntry>* entries) = 0;
+ std::vector<scoped_ptr<NavigationEntry>>* entries) = 0;
// Entries -------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698