Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |