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

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

Issue 452043003: [ew] Add basic classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing files. 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 | 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/file_system/file_system_api.h" 5 #include "chrome/browser/extensions/api/file_system/file_system_api.h"
6 6
7 #include <set>
8
7 #include "apps/app_window.h" 9 #include "apps/app_window.h"
8 #include "apps/app_window_registry.h" 10 #include "apps/app_window_registry.h"
9 #include "apps/saved_files_service.h" 11 #include "apps/saved_files_service.h"
10 #include "base/bind.h" 12 #include "base/bind.h"
11 #include "base/file_util.h" 13 #include "base/file_util.h"
12 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
13 #include "base/logging.h" 15 #include "base/logging.h"
14 #include "base/path_service.h" 16 #include "base/path_service.h"
15 #include "base/strings/string_util.h" 17 #include "base/strings/string_util.h"
16 #include "base/strings/stringprintf.h" 18 #include "base/strings/stringprintf.h"
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 return false; 944 return false;
943 } 945 }
944 946
945 bool FileSystemGetObservedEntriesFunction::RunSync() { 947 bool FileSystemGetObservedEntriesFunction::RunSync() {
946 NOTIMPLEMENTED(); 948 NOTIMPLEMENTED();
947 error_ = kUnknownIdError; 949 error_ = kUnknownIdError;
948 return false; 950 return false;
949 } 951 }
950 952
951 } // namespace extensions 953 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698