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

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

Issue 14575004: Extract BookmarksFileImporter from Firefox2Importer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix again Created 7 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
6 #define CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
7
8 #include "chrome/browser/importer/importer.h"
9
10 class ImporterBridge;
tfarina 2013/05/10 19:58:30 no need of this forwarding too.
11
12 namespace importer {
13 struct SourceProfile;
tfarina 2013/05/10 19:58:30 you don't need this forward because it's part of i
14 }
15
16 // Importer for bookmarks files.
17 class BookmarksFileImporter : public Importer {
18 public:
19 BookmarksFileImporter();
20
21 virtual void StartImport(const importer::SourceProfile& source_profile,
22 uint16 items,
23 ImporterBridge* bridge) OVERRIDE;
tfarina 2013/05/10 19:58:30 I'd include compiler_specific.h and basictypes.h j
24
25 private:
26 virtual ~BookmarksFileImporter();
27
28 DISALLOW_COPY_AND_ASSIGN(BookmarksFileImporter);
29 };
30
31 #endif // CHROME_BROWSER_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698