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

Side by Side Diff: webkit/browser/fileapi/sandbox_isolated_origin_database.h

Issue 16701004: Fix webkit_storage exports definitions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 #ifndef WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_ 5 #ifndef WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_
6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_ 6 #define WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_
7 7
8 #include "webkit/browser/fileapi/sandbox_origin_database_interface.h" 8 #include "webkit/browser/fileapi/sandbox_origin_database_interface.h"
9 9
10 namespace fileapi { 10 namespace fileapi {
11 11
12 class WEBKIT_STORAGE_EXPORT_PRIVATE SandboxIsolatedOriginDatabase 12 class WEBKIT_STORAGE_BROWSER_EXPORT_PRIVATE SandboxIsolatedOriginDatabase
13 : public SandboxOriginDatabaseInterface { 13 : public SandboxOriginDatabaseInterface {
14 public: 14 public:
15 static const base::FilePath::CharType kOriginDirectory[]; 15 static const base::FilePath::CharType kOriginDirectory[];
16 16
17 explicit SandboxIsolatedOriginDatabase( 17 explicit SandboxIsolatedOriginDatabase(
18 const std::string& origin, 18 const std::string& origin,
19 const base::FilePath& file_system_directory); 19 const base::FilePath& file_system_directory);
20 virtual ~SandboxIsolatedOriginDatabase(); 20 virtual ~SandboxIsolatedOriginDatabase();
21 21
22 // SandboxOriginDatabaseInterface overrides. 22 // SandboxOriginDatabaseInterface overrides.
(...skipping 10 matching lines...) Expand all
33 bool migration_checked_; 33 bool migration_checked_;
34 const std::string origin_; 34 const std::string origin_;
35 const base::FilePath file_system_directory_; 35 const base::FilePath file_system_directory_;
36 36
37 DISALLOW_COPY_AND_ASSIGN(SandboxIsolatedOriginDatabase); 37 DISALLOW_COPY_AND_ASSIGN(SandboxIsolatedOriginDatabase);
38 }; 38 };
39 39
40 } // namespace fileapi 40 } // namespace fileapi
41 41
42 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_ 42 #endif // WEBKIT_BROWSER_FILEAPI_SANDBOX_ISOLATED_ORIGIN_DATABASE_H_
OLDNEW
« no previous file with comments | « webkit/browser/fileapi/sandbox_file_stream_writer.h ('k') | webkit/browser/fileapi/sandbox_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698