| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class Page; | 42 class Page; |
| 43 class StorageArea; | 43 class StorageArea; |
| 44 | 44 |
| 45 namespace protocol { | 45 namespace protocol { |
| 46 class DictionaryValue; | 46 class DictionaryValue; |
| 47 } | 47 } |
| 48 | 48 |
| 49 | 49 |
| 50 class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent<
InspectorDOMStorageAgent, protocol::Frontend::DOMStorage>, public protocol::Back
end::DOMStorage { | 50 class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent<
InspectorDOMStorageAgent, protocol::Frontend::DOMStorage>, public protocol::Back
end::DOMStorage { |
| 51 public: | 51 public: |
| 52 static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(Page* page) | 52 static RawPtr<InspectorDOMStorageAgent> create(Page* page) |
| 53 { | 53 { |
| 54 return adoptPtrWillBeNoop(new InspectorDOMStorageAgent(page)); | 54 return new InspectorDOMStorageAgent(page); |
| 55 } | 55 } |
| 56 | 56 |
| 57 ~InspectorDOMStorageAgent() override; | 57 ~InspectorDOMStorageAgent() override; |
| 58 DECLARE_VIRTUAL_TRACE(); | 58 DECLARE_VIRTUAL_TRACE(); |
| 59 | 59 |
| 60 void didDispatchDOMStorageEvent(const String& key, const String& oldValue, c
onst String& newValue, StorageType, SecurityOrigin*); | 60 void didDispatchDOMStorageEvent(const String& key, const String& oldValue, c
onst String& newValue, StorageType, SecurityOrigin*); |
| 61 | 61 |
| 62 private: | 62 private: |
| 63 explicit InspectorDOMStorageAgent(Page*); | 63 explicit InspectorDOMStorageAgent(Page*); |
| 64 | 64 |
| 65 // InspectorBaseAgent overrides. | 65 // InspectorBaseAgent overrides. |
| 66 void restore() override; | 66 void restore() override; |
| 67 | 67 |
| 68 // protocol::Dispatcher::DOMStorageCommandHandler overrides. | 68 // protocol::Dispatcher::DOMStorageCommandHandler overrides. |
| 69 void enable(ErrorString*) override; | 69 void enable(ErrorString*) override; |
| 70 void disable(ErrorString*) override; | 70 void disable(ErrorString*) override; |
| 71 void getDOMStorageItems(ErrorString*, PassOwnPtr<protocol::DOMStorage::Stora
geId> in_storageId, OwnPtr<protocol::Array<protocol::Array<String>>>* out_entrie
s) override; | 71 void getDOMStorageItems(ErrorString*, PassOwnPtr<protocol::DOMStorage::Stora
geId> in_storageId, OwnPtr<protocol::Array<protocol::Array<String>>>* out_entrie
s) override; |
| 72 void setDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::Storag
eId> in_storageId, const String& in_key, const String& in_value) override; | 72 void setDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::Storag
eId> in_storageId, const String& in_key, const String& in_value) override; |
| 73 void removeDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::Sto
rageId> in_storageId, const String& in_key) override; | 73 void removeDOMStorageItem(ErrorString*, PassOwnPtr<protocol::DOMStorage::Sto
rageId> in_storageId, const String& in_key) override; |
| 74 | 74 |
| 75 StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage::
StorageId>, LocalFrame*&); | 75 StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage::
StorageId>, LocalFrame*&); |
| 76 PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool
isLocalStorage); | 76 PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool
isLocalStorage); |
| 77 | 77 |
| 78 RawPtrWillBeMember<Page> m_page; | 78 Member<Page> m_page; |
| 79 bool m_isEnabled; | 79 bool m_isEnabled; |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 } // namespace blink | 82 } // namespace blink |
| 83 | 83 |
| 84 #endif // !defined(InspectorDOMStorageAgent_h) | 84 #endif // !defined(InspectorDOMStorageAgent_h) |
| OLD | NEW |