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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.h

Issue 2654483004: [DevTools] Provide a way to delete Indexed DBs (Closed)
Patch Set: Better use of UI.ReportView Created 3 years, 10 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 const String& objectStoreName, 66 const String& objectStoreName,
67 const String& indexName, 67 const String& indexName,
68 int skipCount, 68 int skipCount,
69 int pageSize, 69 int pageSize,
70 Maybe<protocol::IndexedDB::KeyRange>, 70 Maybe<protocol::IndexedDB::KeyRange>,
71 std::unique_ptr<RequestDataCallback>) override; 71 std::unique_ptr<RequestDataCallback>) override;
72 void clearObjectStore(const String& securityOrigin, 72 void clearObjectStore(const String& securityOrigin,
73 const String& databaseName, 73 const String& databaseName,
74 const String& objectStoreName, 74 const String& objectStoreName,
75 std::unique_ptr<ClearObjectStoreCallback>) override; 75 std::unique_ptr<ClearObjectStoreCallback>) override;
76 void deleteDatabase(const String& securityOrigin,
77 const String& databaseName,
78 std::unique_ptr<DeleteDatabaseCallback>) override;
76 79
77 private: 80 private:
78 Member<InspectedFrames> m_inspectedFrames; 81 Member<InspectedFrames> m_inspectedFrames;
79 v8_inspector::V8InspectorSession* m_v8Session; 82 v8_inspector::V8InspectorSession* m_v8Session;
80 }; 83 };
81 84
82 } // namespace blink 85 } // namespace blink
83 86
84 #endif // !defined(InspectorIndexedDBAgent_h) 87 #endif // !defined(InspectorIndexedDBAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698