summaryrefslogtreecommitdiffstats
path: root/chrome/browser/media_galleries/fileapi/itunes_finder_mac.h
blob: d123b1251dc0774576856a8d0996fbbffbec1630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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_