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

Unified Diff: apps/saved_files_service.h

Issue 1458553006: ScopedPtrMap -> std::map from apps, ash, media, ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ash_unittests compile error 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 | apps/saved_files_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/saved_files_service.h
diff --git a/apps/saved_files_service.h b/apps/saved_files_service.h
index 6359116e097dcbf0e055219e4e14c719c377e560..0cf7d9c4f46b7c95123c0980b4a8e85db763ec0c 100644
--- a/apps/saved_files_service.h
+++ b/apps/saved_files_service.h
@@ -5,11 +5,11 @@
#ifndef APPS_SAVED_FILES_SERVICE_H_
#define APPS_SAVED_FILES_SERVICE_H_
+#include <map>
#include <set>
#include <string>
#include <vector>
-#include "base/containers/scoped_ptr_map.h"
#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
#include "base/memory/scoped_ptr.h"
@@ -127,8 +127,7 @@ class SavedFilesService : public KeyedService,
static void SetLruSizeForTest(int size);
static void ClearLruSizeForTest();
- base::ScopedPtrMap<std::string, scoped_ptr<SavedFiles>>
- extension_id_to_saved_files_;
+ std::map<std::string, scoped_ptr<SavedFiles>> extension_id_to_saved_files_;
content::NotificationRegistrar registrar_;
Profile* profile_;
« no previous file with comments | « no previous file | apps/saved_files_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698