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

Side by Side Diff: third_party/WebKit/Source/modules/storage/InspectorDOMStorageAgent.h

Issue 1767883002: DevTools: generate string16-based handlers for v8_inspector. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing 2 Created 4 years, 9 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 /* 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 28 matching lines...) Expand all
39 namespace blink { 39 namespace blink {
40 40
41 class LocalFrame; 41 class LocalFrame;
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 typedef String ErrorString;
50 49
51 class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent< InspectorDOMStorageAgent, protocol::Frontend::DOMStorage>, public protocol::Disp atcher::DOMStorageCommandHandler { 50 class MODULES_EXPORT InspectorDOMStorageAgent final : public InspectorBaseAgent< InspectorDOMStorageAgent, protocol::Frontend::DOMStorage>, public protocol::Disp atcher::DOMStorageCommandHandler {
52 public: 51 public:
53 static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(Page* page) 52 static PassOwnPtrWillBeRawPtr<InspectorDOMStorageAgent> create(Page* page)
54 { 53 {
55 return adoptPtrWillBeNoop(new InspectorDOMStorageAgent(page)); 54 return adoptPtrWillBeNoop(new InspectorDOMStorageAgent(page));
56 } 55 }
57 56
58 ~InspectorDOMStorageAgent() override; 57 ~InspectorDOMStorageAgent() override;
59 DECLARE_VIRTUAL_TRACE(); 58 DECLARE_VIRTUAL_TRACE();
(...skipping 16 matching lines...) Expand all
76 StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage:: StorageId>, LocalFrame*&); 75 StorageArea* findStorageArea(ErrorString*, PassOwnPtr<protocol::DOMStorage:: StorageId>, LocalFrame*&);
77 PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage); 76 PassOwnPtr<protocol::DOMStorage::StorageId> storageId(SecurityOrigin*, bool isLocalStorage);
78 77
79 RawPtrWillBeMember<Page> m_page; 78 RawPtrWillBeMember<Page> m_page;
80 bool m_isEnabled; 79 bool m_isEnabled;
81 }; 80 };
82 81
83 } // namespace blink 82 } // namespace blink
84 83
85 #endif // !defined(InspectorDOMStorageAgent_h) 84 #endif // !defined(InspectorDOMStorageAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698