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

Side by Side Diff: chrome/utility/importer/firefox_importer.h

Issue 638863002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/utility (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_ 5 #ifndef CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
6 #define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_ 6 #define CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 14 matching lines...) Expand all
25 // Importer for Mozilla Firefox 3 and later. 25 // Importer for Mozilla Firefox 3 and later.
26 // Firefox stores its persistent information in a system called places. 26 // Firefox stores its persistent information in a system called places.
27 // http://wiki.mozilla.org/Places 27 // http://wiki.mozilla.org/Places
28 class FirefoxImporter : public Importer { 28 class FirefoxImporter : public Importer {
29 public: 29 public:
30 FirefoxImporter(); 30 FirefoxImporter();
31 31
32 // Importer: 32 // Importer:
33 virtual void StartImport(const importer::SourceProfile& source_profile, 33 virtual void StartImport(const importer::SourceProfile& source_profile,
34 uint16 items, 34 uint16 items,
35 ImporterBridge* bridge) OVERRIDE; 35 ImporterBridge* bridge) override;
36 36
37 private: 37 private:
38 typedef std::map<int64, std::set<GURL> > FaviconMap; 38 typedef std::map<int64, std::set<GURL> > FaviconMap;
39 39
40 virtual ~FirefoxImporter(); 40 virtual ~FirefoxImporter();
41 41
42 void ImportBookmarks(); 42 void ImportBookmarks();
43 void ImportPasswords(); 43 void ImportPasswords();
44 void ImportHistory(); 44 void ImportHistory();
45 void ImportSearchEngines(); 45 void ImportSearchEngines();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 #if defined(OS_POSIX) 84 #if defined(OS_POSIX)
85 // Stored because we can only access it from the UI thread. 85 // Stored because we can only access it from the UI thread.
86 std::string locale_; 86 std::string locale_;
87 #endif 87 #endif
88 88
89 DISALLOW_COPY_AND_ASSIGN(FirefoxImporter); 89 DISALLOW_COPY_AND_ASSIGN(FirefoxImporter);
90 }; 90 };
91 91
92 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_ 92 #endif // CHROME_UTILITY_IMPORTER_FIREFOX_IMPORTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698