// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_UTILITY_IMPORTER_IMPORTER_H_ #define CHROME_UTILITY_IMPORTER_IMPORTER_H_ #include <stdint.h> #include "base/memory/ref_counted.h" class ImporterBridge; namespace importer { struct SourceProfile; } // The base class of all importers. class Importer : public base::RefCountedThreadSafe<Importer> { … }; #endif // CHROME_UTILITY_IMPORTER_IMPORTER_H_