Supervised user import: Listen for profile creation/deletion
[chromium-blink-merge.git] / content / browser / indexed_db / indexed_db_blob_info.h
blob60da7076a707ea0941dc84ac80ebc4d52b025157
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
3 // found in the LICENSE file.
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "base/files/file_path.h"
12 #include "base/time/time.h"
13 #include "content/common/content_export.h"
14 #include "storage/browser/blob/shareable_file_reference.h"
16 namespace content {
18 class CONTENT_EXPORT IndexedDBBlobInfo {
19 public:
20 typedef storage::ShareableFileReference::FinalReleaseCallback ReleaseCallback;
21 IndexedDBBlobInfo();
22 // These two are used for Blobs.
23 IndexedDBBlobInfo(const std::string& uuid,
24 const base::string16& type,
25 int64 size);
26 IndexedDBBlobInfo(const base::string16& type, int64 size, int64 key);
27 // These two are used for Files.
28 IndexedDBBlobInfo(const std::string& uuid,
29 const base::FilePath& file_path,
30 const base::string16& file_name,
31 const base::string16& type);
32 IndexedDBBlobInfo(int64 key,
33 const base::string16& type,
34 const base::string16& file_name);
36 IndexedDBBlobInfo(const IndexedDBBlobInfo& other);
37 ~IndexedDBBlobInfo();
38 IndexedDBBlobInfo& operator=(const IndexedDBBlobInfo& other);
40 bool is_file() const { return is_file_; }
41 const std::string& uuid() const { return uuid_; }
42 const base::string16& type() const { return type_; }
43 int64 size() const { return size_; }
44 const base::string16& file_name() const { return file_name_; }
45 int64 key() const { return key_; }
46 const base::FilePath& file_path() const { return file_path_; }
47 const base::Time& last_modified() const { return last_modified_; }
48 const base::Closure& mark_used_callback() const {
49 return mark_used_callback_;
51 const ReleaseCallback& release_callback() const { return release_callback_; }
53 void set_size(int64 size);
54 void set_uuid(const std::string& uuid);
55 void set_file_path(const base::FilePath& file_path);
56 void set_last_modified(const base::Time& time);
57 void set_key(int64 key);
58 void set_mark_used_callback(const base::Closure& mark_used_callback);
59 void set_release_callback(const ReleaseCallback& release_callback);
61 private:
62 bool is_file_;
63 std::string uuid_; // Always for Blob; sometimes for File.
64 base::string16 type_; // Mime type.
65 int64 size_; // -1 if unknown for File.
66 base::string16 file_name_; // Only for File.
67 base::FilePath file_path_; // Only for File.
68 base::Time last_modified_; // Only for File; valid only if size is.
70 // Valid only when this comes out of the database.
71 int64 key_;
72 base::Closure mark_used_callback_;
73 ReleaseCallback release_callback_;
76 } // namespace content
78 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_