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

Side by Side Diff: chrome/browser/importer/firefox3_importer.h

Issue 2106015: Move data types used in the importer process to common/, in preparation for i... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/importer/firefox2_importer.h ('k') | chrome/browser/importer/ie_importer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ 5 #ifndef CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_
6 #define CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ 6 #define CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/file_path.h" 14 #include "base/file_path.h"
15 #include "chrome/browser/importer/importer.h" 15 #include "chrome/browser/importer/importer.h"
16 #include "chrome/browser/importer/importer_data_types.h" 16 #include "chrome/common/importer_data_types.h"
17 #include "googleurl/src/gurl.h" 17 #include "googleurl/src/gurl.h"
18 18
19 struct sqlite3; 19 struct sqlite3;
20 20
21 // Importer for Mozilla Firefox 3. 21 // Importer for Mozilla Firefox 3.
22 // Firefox 3 stores its persistent information in a new system called places. 22 // Firefox 3 stores its persistent information in a new system called places.
23 // http://wiki.mozilla.org/Places 23 // http://wiki.mozilla.org/Places
24 class Firefox3Importer : public Importer { 24 class Firefox3Importer : public Importer {
25 public: 25 public:
26 Firefox3Importer() { } 26 Firefox3Importer() { }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const FaviconMap& favicon_map, 78 const FaviconMap& favicon_map,
79 std::vector<history::ImportedFavIconUsage>* favicons); 79 std::vector<history::ImportedFavIconUsage>* favicons);
80 80
81 FilePath source_path_; 81 FilePath source_path_;
82 FilePath app_path_; 82 FilePath app_path_;
83 83
84 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer); 84 DISALLOW_COPY_AND_ASSIGN(Firefox3Importer);
85 }; 85 };
86 86
87 #endif // CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_ 87 #endif // CHROME_BROWSER_IMPORTER_FIREFOX3_IMPORTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/importer/firefox2_importer.h ('k') | chrome/browser/importer/ie_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698