blob: d123b1251dc0774576856a8d0996fbbffbec1630 [file] [log] [blame]
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_
#define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_
#include "chrome/browser/media_galleries/fileapi/itunes_finder.h"
namespace itunes {
class ITunesFinderMac : public ITunesFinder {
public:
explicit ITunesFinderMac(const ITunesFinderCallback& callback);
virtual ~ITunesFinderMac();
private:
virtual void FindITunesLibraryOnFileThread() OVERRIDE;
DISALLOW_COPY_AND_ASSIGN(ITunesFinderMac);
};
} // namespace itunes
#endif // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_