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

Side by Side Diff: storage/browser/fileapi/sandbox_prioritized_origin_database.h

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android build 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 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 #ifndef WEBKIT_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_ 5 #ifndef STORAGE_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_
6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_ 6 #define STORAGE_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "webkit/browser/fileapi/sandbox_origin_database_interface.h" 12 #include "storage/browser/fileapi/sandbox_origin_database_interface.h"
13 13
14 namespace leveldb { 14 namespace leveldb {
15 class Env; 15 class Env;
16 } 16 }
17 17
18 namespace storage { 18 namespace storage {
19 19
20 class ObfuscatedFileUtil; 20 class ObfuscatedFileUtil;
21 class SandboxIsolatedOriginDatabase; 21 class SandboxIsolatedOriginDatabase;
22 class SandboxOriginDatabase; 22 class SandboxOriginDatabase;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 leveldb::Env* env_override_; 62 leveldb::Env* env_override_;
63 const base::FilePath primary_origin_file_; 63 const base::FilePath primary_origin_file_;
64 scoped_ptr<SandboxOriginDatabase> origin_database_; 64 scoped_ptr<SandboxOriginDatabase> origin_database_;
65 scoped_ptr<SandboxIsolatedOriginDatabase> primary_origin_database_; 65 scoped_ptr<SandboxIsolatedOriginDatabase> primary_origin_database_;
66 66
67 DISALLOW_COPY_AND_ASSIGN(SandboxPrioritizedOriginDatabase); 67 DISALLOW_COPY_AND_ASSIGN(SandboxPrioritizedOriginDatabase);
68 }; 68 };
69 69
70 } // namespace storage 70 } // namespace storage
71 71
72 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_ 72 #endif // STORAGE_BROWSER_FILEAPI_SANDBOX_PRIORITIZED_ORIGIN_DATABASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698