Home | History | Annotate | Download | only in fileapi
      1 // Copyright (c) 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_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_
      6 #define CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_
      7 
      8 #include "chrome/browser/media_galleries/fileapi/itunes_finder.h"
      9 
     10 namespace itunes {
     11 
     12 class ITunesFinderMac : public ITunesFinder {
     13  public:
     14   explicit ITunesFinderMac(const ITunesFinderCallback& callback);
     15   virtual ~ITunesFinderMac();
     16 
     17  private:
     18   virtual void FindITunesLibraryOnFileThread() OVERRIDE;
     19 
     20   DISALLOW_COPY_AND_ASSIGN(ITunesFinderMac);
     21 };
     22 
     23 }  // namespace itunes
     24 
     25 #endif  // CHROME_BROWSER_MEDIA_GALLERIES_FILEAPI_ITUNES_FINDER_MAC_H_
     26