webview: Remove LayerScrollOffsetDelegate::GetTotalScrollOffset.
[chromium-blink-merge.git] / chrome / utility / importer / bookmarks_file_importer.h
blob90ed8f937737ccab82cd9049606ed02ebbba1660
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.
5 #ifndef CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
6 #define CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "chrome/utility/importer/importer.h"
12 // Importer for bookmarks files.
13 class BookmarksFileImporter : public Importer {
14 public:
15 BookmarksFileImporter();
17 void StartImport(const importer::SourceProfile& source_profile,
18 uint16 items,
19 ImporterBridge* bridge) override;
21 private:
22 ~BookmarksFileImporter() override;
24 DISALLOW_COPY_AND_ASSIGN(BookmarksFileImporter);
27 #endif // CHROME_UTILITY_IMPORTER_BOOKMARKS_FILE_IMPORTER_H_