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

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

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include "modules/indexeddb/IDBFactory.h" 48 #include "modules/indexeddb/IDBFactory.h"
49 #include "modules/indexeddb/IDBIndex.h" 49 #include "modules/indexeddb/IDBIndex.h"
50 #include "modules/indexeddb/IDBKey.h" 50 #include "modules/indexeddb/IDBKey.h"
51 #include "modules/indexeddb/IDBKeyPath.h" 51 #include "modules/indexeddb/IDBKeyPath.h"
52 #include "modules/indexeddb/IDBKeyRange.h" 52 #include "modules/indexeddb/IDBKeyRange.h"
53 #include "modules/indexeddb/IDBMetadata.h" 53 #include "modules/indexeddb/IDBMetadata.h"
54 #include "modules/indexeddb/IDBObjectStore.h" 54 #include "modules/indexeddb/IDBObjectStore.h"
55 #include "modules/indexeddb/IDBOpenDBRequest.h" 55 #include "modules/indexeddb/IDBOpenDBRequest.h"
56 #include "modules/indexeddb/IDBRequest.h" 56 #include "modules/indexeddb/IDBRequest.h"
57 #include "modules/indexeddb/IDBTransaction.h" 57 #include "modules/indexeddb/IDBTransaction.h"
58 #include "platform/inspector_protocol/Values.h"
59 #include "platform/v8_inspector/public/V8InspectorSession.h" 58 #include "platform/v8_inspector/public/V8InspectorSession.h"
60 #include "platform/weborigin/SecurityOrigin.h" 59 #include "platform/weborigin/SecurityOrigin.h"
61 #include "public/platform/modules/indexeddb/WebIDBCursor.h" 60 #include "public/platform/modules/indexeddb/WebIDBCursor.h"
62 #include "public/platform/modules/indexeddb/WebIDBTypes.h" 61 #include "public/platform/modules/indexeddb/WebIDBTypes.h"
63 #include "wtf/Vector.h" 62 #include "wtf/Vector.h"
64 63
65 using blink::protocol::Array; 64 using blink::protocol::Array;
66 using blink::protocol::IndexedDB::DatabaseWithObjectStores; 65 using blink::protocol::IndexedDB::DatabaseWithObjectStores;
67 using blink::protocol::IndexedDB::DataEntry; 66 using blink::protocol::IndexedDB::DataEntry;
68 using blink::protocol::IndexedDB::Key; 67 using blink::protocol::IndexedDB::Key;
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 clearObjectStore->start(idbFactory, document->getSecurityOrigin(), databaseN ame); 825 clearObjectStore->start(idbFactory, document->getSecurityOrigin(), databaseN ame);
827 } 826 }
828 827
829 DEFINE_TRACE(InspectorIndexedDBAgent) 828 DEFINE_TRACE(InspectorIndexedDBAgent)
830 { 829 {
831 visitor->trace(m_inspectedFrames); 830 visitor->trace(m_inspectedFrames);
832 InspectorBaseAgent::trace(visitor); 831 InspectorBaseAgent::trace(visitor);
833 } 832 }
834 833
835 } // namespace blink 834 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698