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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "modules/indexeddb/IDBIndex.h" 50 #include "modules/indexeddb/IDBIndex.h"
51 #include "modules/indexeddb/IDBKey.h" 51 #include "modules/indexeddb/IDBKey.h"
52 #include "modules/indexeddb/IDBKeyPath.h" 52 #include "modules/indexeddb/IDBKeyPath.h"
53 #include "modules/indexeddb/IDBKeyRange.h" 53 #include "modules/indexeddb/IDBKeyRange.h"
54 #include "modules/indexeddb/IDBMetadata.h" 54 #include "modules/indexeddb/IDBMetadata.h"
55 #include "modules/indexeddb/IDBObjectStore.h" 55 #include "modules/indexeddb/IDBObjectStore.h"
56 #include "modules/indexeddb/IDBOpenDBRequest.h" 56 #include "modules/indexeddb/IDBOpenDBRequest.h"
57 #include "modules/indexeddb/IDBRequest.h" 57 #include "modules/indexeddb/IDBRequest.h"
58 #include "modules/indexeddb/IDBTransaction.h" 58 #include "modules/indexeddb/IDBTransaction.h"
59 #include "platform/weborigin/SecurityOrigin.h" 59 #include "platform/weborigin/SecurityOrigin.h"
60 #include "platform/wtf/Vector.h"
60 #include "public/platform/modules/indexeddb/WebIDBCursor.h" 61 #include "public/platform/modules/indexeddb/WebIDBCursor.h"
61 #include "public/platform/modules/indexeddb/WebIDBTypes.h" 62 #include "public/platform/modules/indexeddb/WebIDBTypes.h"
62 #include "wtf/Vector.h"
63 63
64 using blink::protocol::Array; 64 using blink::protocol::Array;
65 using blink::protocol::IndexedDB::DatabaseWithObjectStores; 65 using blink::protocol::IndexedDB::DatabaseWithObjectStores;
66 using blink::protocol::IndexedDB::DataEntry; 66 using blink::protocol::IndexedDB::DataEntry;
67 using blink::protocol::IndexedDB::Key; 67 using blink::protocol::IndexedDB::Key;
68 using blink::protocol::IndexedDB::KeyPath; 68 using blink::protocol::IndexedDB::KeyPath;
69 using blink::protocol::IndexedDB::KeyRange; 69 using blink::protocol::IndexedDB::KeyRange;
70 using blink::protocol::IndexedDB::ObjectStore; 70 using blink::protocol::IndexedDB::ObjectStore;
71 using blink::protocol::IndexedDB::ObjectStoreIndex; 71 using blink::protocol::IndexedDB::ObjectStoreIndex;
72 using blink::protocol::Maybe; 72 using blink::protocol::Maybe;
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 document->GetSecurityOrigin()->ToRawString()), 1033 document->GetSecurityOrigin()->ToRawString()),
1034 false); 1034 false);
1035 } 1035 }
1036 1036
1037 DEFINE_TRACE(InspectorIndexedDBAgent) { 1037 DEFINE_TRACE(InspectorIndexedDBAgent) {
1038 visitor->Trace(inspected_frames_); 1038 visitor->Trace(inspected_frames_);
1039 InspectorBaseAgent::Trace(visitor); 1039 InspectorBaseAgent::Trace(visitor);
1040 } 1040 }
1041 1041
1042 } // namespace blink 1042 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698