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

Unified Diff: chrome/browser/extensions/api/dial/dial_service.h

Issue 1452513002: Remove ScopedVector from extensions/api/dial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed review issues. 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
« no previous file with comments | « no previous file | chrome/browser/extensions/api/dial/dial_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/dial/dial_service.h
diff --git a/chrome/browser/extensions/api/dial/dial_service.h b/chrome/browser/extensions/api/dial/dial_service.h
index 6f1e7e9c027d9f8a6eb333953de85dd8d4bca9f5..9b69260a02961a7d46f8090986153e6e5d56cea7 100644
--- a/chrome/browser/extensions/api/dial/dial_service.h
+++ b/chrome/browser/extensions/api/dial/dial_service.h
@@ -6,10 +6,10 @@
#define CHROME_BROWSER_EXTENSIONS_API_DIAL_DIAL_SERVICE_H_
#include <string>
+#include <vector>
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_ptr.h"
-#include "base/memory/scoped_vector.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/threading/thread_checker.h"
@@ -244,7 +244,7 @@ class DialServiceImpl : public DialService,
// DialSockets for each network interface whose ip address was
// successfully bound.
- ScopedVector<DialSocket> dial_sockets_;
+ std::vector<scoped_ptr<DialSocket>> dial_sockets_;
// The NetLog for this service.
net::NetLog* net_log_;
« no previous file with comments | « no previous file | chrome/browser/extensions/api/dial/dial_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698