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

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

Issue 2125213002: [IndexedDB] Propogating changes to observers : Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lifetime
Patch Set: Options constrcutor modified Created 4 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_OBSERVER_H_ 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_OBSERVER_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_OBSERVER_H_ 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_OBSERVER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <bitset>
12 #include <set>
13
11 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/stl_util.h"
12 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
17 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBTypes.h"
13 18
14 namespace content { 19 namespace content {
15 20
16 class CONTENT_EXPORT IndexedDBObserver { 21 class CONTENT_EXPORT IndexedDBObserver {
17 public: 22 public:
18 IndexedDBObserver(int32_t observer_id); 23 struct Options {
24 bool include_transaction;
25 bool no_records;
26 bool values;
27 // Operation types and corresponding bits are add(0), put(1), delete(2),
jsbell 2016/07/18 23:38:57 Change the comment to reference WebIDBOperationTyp
palakj1 2016/07/19 03:53:11 Done.
28 // clear(3).
29 std::bitset<blink::WebIDBOperationTypeCount> operation_types;
30
31 explicit Options(bool include_transaction,
32 bool no_records,
33 bool values,
34 unsigned short types);
35 Options(const Options&);
36 ~Options();
37 };
38 IndexedDBObserver(int32_t observer_id,
39 std::set<int64_t> object_store_ids,
40 Options options);
19 ~IndexedDBObserver(); 41 ~IndexedDBObserver();
20 42
21 int32_t id() const { return observer_id_; } 43 int32_t id() const { return id_; }
44 const std::set<int64_t>& GetObjectStoreIds() const {
jsbell 2016/07/18 23:38:57 Since it's a simple accessor, could be named: obje
palakj1 2016/07/19 03:53:11 Done
45 return object_store_ids_;
46 }
47 bool IsRecordingType(blink::WebIDBOperationType type) const {
48 DCHECK_NE(type, blink::WebIDBOperationTypeCount);
49 return options_.operation_types[type];
50 }
51 bool IsRecordingObjectStore(int64_t object_store_id) const {
52 return ContainsValue(object_store_ids_, object_store_id);
53 }
54 bool include_transaction() const { return options_.include_transaction; }
55 bool no_records() const { return options_.no_records; }
56 bool values() const { return options_.values; }
22 57
23 private: 58 private:
24 int32_t observer_id_; 59 int32_t id_;
60 std::set<int64_t> object_store_ids_;
61 Options options_;
25 62
26 DISALLOW_COPY_AND_ASSIGN(IndexedDBObserver); 63 DISALLOW_COPY_AND_ASSIGN(IndexedDBObserver);
27 }; 64 };
28 65
29 } // namespace content 66 } // namespace content
30 67
31 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_OBSERVER_H_ 68 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698