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

Side by Side Diff: chrome/browser/extensions/api/developer_private/developer_private_api.cc

Issue 21370003: Rename fileapi::LocalFileSystemOperation to FileSystemOperationImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 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 (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/developer_private/developer_private_api. h" 5 #include "chrome/browser/extensions/api/developer_private/developer_private_api. h"
6 6
7 #include "apps/app_load_service.h" 7 #include "apps/app_load_service.h"
8 #include "apps/app_restore_service.h" 8 #include "apps/app_restore_service.h"
9 #include "apps/saved_files_service.h" 9 #include "apps/saved_files_service.h"
10 #include "apps/shell_window.h" 10 #include "apps/shell_window.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "extensions/browser/view_type_utils.h" 53 #include "extensions/browser/view_type_utils.h"
54 #include "extensions/common/constants.h" 54 #include "extensions/common/constants.h"
55 #include "extensions/common/extension_resource.h" 55 #include "extensions/common/extension_resource.h"
56 #include "extensions/common/switches.h" 56 #include "extensions/common/switches.h"
57 #include "grit/chromium_strings.h" 57 #include "grit/chromium_strings.h"
58 #include "grit/generated_resources.h" 58 #include "grit/generated_resources.h"
59 #include "net/base/net_util.h" 59 #include "net/base/net_util.h"
60 #include "ui/base/l10n/l10n_util.h" 60 #include "ui/base/l10n/l10n_util.h"
61 #include "ui/webui/web_ui_util.h" 61 #include "ui/webui/web_ui_util.h"
62 #include "webkit/browser/fileapi/file_system_context.h" 62 #include "webkit/browser/fileapi/file_system_context.h"
63 #include "webkit/browser/fileapi/file_system_operation.h"
63 #include "webkit/browser/fileapi/file_system_operation_runner.h" 64 #include "webkit/browser/fileapi/file_system_operation_runner.h"
64 #include "webkit/browser/fileapi/local_file_system_operation.h"
65 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h" 65 #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h"
66 #include "webkit/common/blob/shareable_file_reference.h" 66 #include "webkit/common/blob/shareable_file_reference.h"
67 67
68 using apps::ShellWindow; 68 using apps::ShellWindow;
69 using content::RenderViewHost; 69 using content::RenderViewHost;
70 70
71 namespace extensions { 71 namespace extensions {
72 72
73 namespace events = event_names; 73 namespace events = event_names;
74 74
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 1257
1258 #undef SET_STRING 1258 #undef SET_STRING
1259 return true; 1259 return true;
1260 } 1260 }
1261 1261
1262 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {} 1262 DeveloperPrivateGetStringsFunction::~DeveloperPrivateGetStringsFunction() {}
1263 1263
1264 } // namespace api 1264 } // namespace api
1265 1265
1266 } // namespace extensions 1266 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698