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

Side by Side Diff: content/browser/indexed_db/indexed_db_blob_info.h

Issue 475063004: IndexedDB + Coding Style: re-order enums/typedefs/... to match guide (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased after r291485 Created 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_ 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_ 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/time/time.h" 12 #include "base/time/time.h"
13 #include "content/common/content_export.h" 13 #include "content/common/content_export.h"
14 #include "webkit/common/blob/shareable_file_reference.h" 14 #include "webkit/common/blob/shareable_file_reference.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 class CONTENT_EXPORT IndexedDBBlobInfo { 18 class CONTENT_EXPORT IndexedDBBlobInfo {
19 public: 19 public:
20 typedef storage::ShareableFileReference::FinalReleaseCallback ReleaseCallback; 20 typedef storage::ShareableFileReference::FinalReleaseCallback ReleaseCallback;
21 IndexedDBBlobInfo(); 21 IndexedDBBlobInfo();
22 ~IndexedDBBlobInfo();
23 // These two are used for Blobs. 22 // These two are used for Blobs.
24 IndexedDBBlobInfo(const std::string& uuid, 23 IndexedDBBlobInfo(const std::string& uuid,
25 const base::string16& type, 24 const base::string16& type,
26 int64 size); 25 int64 size);
27 IndexedDBBlobInfo(const base::string16& type, int64 size, int64 key); 26 IndexedDBBlobInfo(const base::string16& type, int64 size, int64 key);
28 // These two are used for Files. 27 // These two are used for Files.
29 IndexedDBBlobInfo(const std::string& uuid, 28 IndexedDBBlobInfo(const std::string& uuid,
30 const base::FilePath& file_path, 29 const base::FilePath& file_path,
31 const base::string16& file_name, 30 const base::string16& file_name,
32 const base::string16& type); 31 const base::string16& type);
33 IndexedDBBlobInfo(int64 key, 32 IndexedDBBlobInfo(int64 key,
34 const base::string16& type, 33 const base::string16& type,
35 const base::string16& file_name); 34 const base::string16& file_name);
36 35
36 ~IndexedDBBlobInfo();
37
37 bool is_file() const { return is_file_; } 38 bool is_file() const { return is_file_; }
38 const std::string& uuid() const { return uuid_; } 39 const std::string& uuid() const { return uuid_; }
39 const base::string16& type() const { return type_; } 40 const base::string16& type() const { return type_; }
40 int64 size() const { return size_; } 41 int64 size() const { return size_; }
41 const base::string16& file_name() const { return file_name_; } 42 const base::string16& file_name() const { return file_name_; }
42 int64 key() const { return key_; } 43 int64 key() const { return key_; }
43 const base::FilePath& file_path() const { return file_path_; } 44 const base::FilePath& file_path() const { return file_path_; }
44 const base::Time& last_modified() const { return last_modified_; } 45 const base::Time& last_modified() const { return last_modified_; }
45 const base::Closure& mark_used_callback() const { 46 const base::Closure& mark_used_callback() const {
46 return mark_used_callback_; 47 return mark_used_callback_;
(...skipping 19 matching lines...) Expand all
66 67
67 // Valid only when this comes out of the database. 68 // Valid only when this comes out of the database.
68 int64 key_; 69 int64 key_;
69 base::Closure mark_used_callback_; 70 base::Closure mark_used_callback_;
70 ReleaseCallback release_callback_; 71 ReleaseCallback release_callback_;
71 }; 72 };
72 73
73 } // namespace content 74 } // namespace content
74 75
75 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_ 76 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_backing_store.h ('k') | content/browser/indexed_db/indexed_db_blob_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698