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

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

Issue 18023022: Blob support for IDB [Chromium] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use ScopedVector and stl_utils for BlobDataHandles. Created 7 years 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
7
8 #include "base/callback.h"
9 #include "base/files/file_path.h"
10 #include "base/time/time.h"
11 #include "webkit/common/blob/shareable_file_reference.h"
12
13 namespace content {
14
15 class IndexedDBBlobInfo {
16 public:
17 typedef webkit_blob::ShareableFileReference::FinalReleaseCallback
18 ReleaseCallback;
19 IndexedDBBlobInfo();
20 IndexedDBBlobInfo(const std::string& uuid, const string16& type, int64 size);
21 IndexedDBBlobInfo(const base::FilePath& file_path,
22 const string16& file_name,
23 const string16& type);
24 IndexedDBBlobInfo(const string16& type, int64 size, int64 key);
25 IndexedDBBlobInfo(int64 key,
26 const string16& type,
27 const string16& file_name);
28
29 bool is_file() const { return is_file_; }
30 const std::string& uuid() const { return uuid_; }
31 const string16& type() const { return type_; }
32 int64 size() const { return size_; }
33 const string16& file_name() const { return file_name_; }
34 int64 key() const { return key_; }
35 const base::FilePath& file_path() const { return file_path_; }
36 const base::Time& last_modified() const { return last_modified_; }
37 const base::Closure& mark_used_callback() const {
38 return mark_used_callback_;
39 }
40 const ReleaseCallback& release_callback() const { return release_callback_; }
41
42 void set_size(int64 size);
43 void set_uuid(const std::string& uuid);
44 void set_file_path(const base::FilePath& file_path);
45 void set_last_modified(const base::Time& time);
46 void set_key(int64 key);
47 void set_mark_used_callback(const base::Closure& mark_used_callback);
48 void set_release_callback(const ReleaseCallback& release_callback);
49
50 private:
51 bool is_file_;
52 std::string uuid_; // Always for Blob; sometimes for File.
53 string16 type_; // Mime type.
54 int64 size_; // -1 if unknown for File.
55 string16 file_name_; // Only for File.
56 base::FilePath file_path_; // Only for File.
57 base::Time last_modified_; // Only for File; valid only if size is.
58
59 // Valid only when this comes out of the database.
60 int64 key_;
61 base::Closure mark_used_callback_;
62 ReleaseCallback release_callback_;
63 };
64
65 } // namespace content
66
67 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698