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

Side by Side Diff: chrome/browser/extensions/api/file_system/file_system_api.cc

Issue 559063002: Remove webkit/browser/, point everything to storage/browser/ instead (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up DEPS per feedback Created 6 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/extensions/api/file_system/file_system_api.h" 5 #include "chrome/browser/extensions/api/file_system/file_system_api.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "apps/saved_files_service.h" 9 #include "apps/saved_files_service.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 23 matching lines...) Expand all
34 #include "content/public/browser/render_view_host.h" 34 #include "content/public/browser/render_view_host.h"
35 #include "content/public/browser/web_contents.h" 35 #include "content/public/browser/web_contents.h"
36 #include "extensions/browser/app_window/app_window.h" 36 #include "extensions/browser/app_window/app_window.h"
37 #include "extensions/browser/app_window/app_window_registry.h" 37 #include "extensions/browser/app_window/app_window_registry.h"
38 #include "extensions/browser/extension_prefs.h" 38 #include "extensions/browser/extension_prefs.h"
39 #include "extensions/browser/extension_system.h" 39 #include "extensions/browser/extension_system.h"
40 #include "extensions/browser/granted_file_entry.h" 40 #include "extensions/browser/granted_file_entry.h"
41 #include "extensions/common/permissions/api_permission.h" 41 #include "extensions/common/permissions/api_permission.h"
42 #include "extensions/common/permissions/permissions_data.h" 42 #include "extensions/common/permissions/permissions_data.h"
43 #include "net/base/mime_util.h" 43 #include "net/base/mime_util.h"
44 #include "storage/browser/fileapi/external_mount_points.h"
45 #include "storage/browser/fileapi/isolated_context.h"
44 #include "storage/common/fileapi/file_system_types.h" 46 #include "storage/common/fileapi/file_system_types.h"
45 #include "storage/common/fileapi/file_system_util.h" 47 #include "storage/common/fileapi/file_system_util.h"
46 #include "ui/base/l10n/l10n_util.h" 48 #include "ui/base/l10n/l10n_util.h"
47 #include "ui/shell_dialogs/select_file_dialog.h" 49 #include "ui/shell_dialogs/select_file_dialog.h"
48 #include "ui/shell_dialogs/selected_file_info.h" 50 #include "ui/shell_dialogs/selected_file_info.h"
49 #include "webkit/browser/fileapi/external_mount_points.h"
50 #include "webkit/browser/fileapi/isolated_context.h"
51 51
52 #if defined(OS_MACOSX) 52 #if defined(OS_MACOSX)
53 #include <CoreFoundation/CoreFoundation.h> 53 #include <CoreFoundation/CoreFoundation.h>
54 #include "base/mac/foundation_util.h" 54 #include "base/mac/foundation_util.h"
55 #endif 55 #endif
56 56
57 #if defined(OS_CHROMEOS) 57 #if defined(OS_CHROMEOS)
58 #include "chrome/browser/chromeos/file_manager/filesystem_api_util.h" 58 #include "chrome/browser/chromeos/file_manager/filesystem_api_util.h"
59 #endif 59 #endif
60 60
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
944 return false; 944 return false;
945 } 945 }
946 946
947 bool FileSystemGetObservedEntriesFunction::RunSync() { 947 bool FileSystemGetObservedEntriesFunction::RunSync() {
948 NOTIMPLEMENTED(); 948 NOTIMPLEMENTED();
949 error_ = kUnknownIdError; 949 error_ = kUnknownIdError;
950 return false; 950 return false;
951 } 951 }
952 952
953 } // namespace extensions 953 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698