Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: chrome/browser/media_galleries/fileapi/iapps_data_provider.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/media_galleries/fileapi/iapps_data_provider.h" 5 #include "chrome/browser/media_galleries/fileapi/iapps_data_provider.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/format_macros.h" 11 #include "base/format_macros.h"
12 #include "base/location.h" 12 #include "base/location.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/stl_util.h" 14 #include "base/stl_util.h"
15 #include "base/strings/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/strings/stringprintf.h" 16 #include "base/strings/stringprintf.h"
17 #include "base/threading/thread_restrictions.h" 17 #include "base/threading/thread_restrictions.h"
18 #include "chrome/browser/media_galleries/fileapi/file_path_watcher_util.h" 18 #include "chrome/browser/media_galleries/fileapi/file_path_watcher_util.h"
19 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h" 19 #include "chrome/browser/media_galleries/fileapi/media_file_system_backend.h"
20 #include "chrome/common/media_galleries/itunes_library.h" 20 #include "chrome/common/media_galleries/itunes_library.h"
21 #include "third_party/icu/source/common/unicode/locid.h" 21 #include "third_party/icu/source/common/unicode/locid.h"
22 #include "webkit/browser/fileapi/native_file_util.h" 22 #include "storage/browser/fileapi/native_file_util.h"
23 23
24 namespace iapps { 24 namespace iapps {
25 25
26 IAppsDataProvider::IAppsDataProvider(const base::FilePath& library_path) 26 IAppsDataProvider::IAppsDataProvider(const base::FilePath& library_path)
27 : library_path_(library_path), 27 : library_path_(library_path),
28 needs_refresh_(true), 28 needs_refresh_(true),
29 is_valid_(false), 29 is_valid_(false),
30 weak_factory_(this) { 30 weak_factory_(this) {
31 DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread()); 31 DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread());
32 DCHECK(!library_path_.empty()); 32 DCHECK(!library_path_.empty());
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 void IAppsDataProvider::OnLibraryChanged(const base::FilePath& path, 74 void IAppsDataProvider::OnLibraryChanged(const base::FilePath& path,
75 bool error) { 75 bool error) {
76 DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread()); 76 DCHECK(MediaFileSystemBackend::CurrentlyOnMediaTaskRunnerThread());
77 DCHECK_EQ(library_path_.value(), path.value()); 77 DCHECK_EQ(library_path_.value(), path.value());
78 if (error) 78 if (error)
79 LOG(ERROR) << "Error watching " << library_path_.value(); 79 LOG(ERROR) << "Error watching " << library_path_.value();
80 needs_refresh_ = true; 80 needs_refresh_ = true;
81 } 81 }
82 82
83 } // namespace iapps 83 } // namespace iapps
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698