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

Side by Side Diff: third_party/WebKit/Source/modules/webdatabase/InspectorDatabaseAgent.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) 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 #include "modules/webdatabase/InspectorDatabaseResource.h" 39 #include "modules/webdatabase/InspectorDatabaseResource.h"
40 #include "modules/webdatabase/SQLError.h" 40 #include "modules/webdatabase/SQLError.h"
41 #include "modules/webdatabase/SQLResultSet.h" 41 #include "modules/webdatabase/SQLResultSet.h"
42 #include "modules/webdatabase/SQLResultSetRowList.h" 42 #include "modules/webdatabase/SQLResultSetRowList.h"
43 #include "modules/webdatabase/SQLStatementCallback.h" 43 #include "modules/webdatabase/SQLStatementCallback.h"
44 #include "modules/webdatabase/SQLStatementErrorCallback.h" 44 #include "modules/webdatabase/SQLStatementErrorCallback.h"
45 #include "modules/webdatabase/SQLTransaction.h" 45 #include "modules/webdatabase/SQLTransaction.h"
46 #include "modules/webdatabase/SQLTransactionCallback.h" 46 #include "modules/webdatabase/SQLTransactionCallback.h"
47 #include "modules/webdatabase/SQLTransactionErrorCallback.h" 47 #include "modules/webdatabase/SQLTransactionErrorCallback.h"
48 #include "modules/webdatabase/sqlite/SQLValue.h" 48 #include "modules/webdatabase/sqlite/SQLValue.h"
49 #include "wtf/RefCounted.h" 49 #include "platform/wtf/RefCounted.h"
50 #include "wtf/Vector.h" 50 #include "platform/wtf/Vector.h"
51 51
52 typedef blink::protocol::Database::Backend::ExecuteSQLCallback 52 typedef blink::protocol::Database::Backend::ExecuteSQLCallback
53 ExecuteSQLCallback; 53 ExecuteSQLCallback;
54 54
55 namespace blink { 55 namespace blink {
56 56
57 using protocol::Maybe; 57 using protocol::Maybe;
58 using protocol::Response; 58 using protocol::Response;
59 59
60 namespace DatabaseAgentState { 60 namespace DatabaseAgentState {
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 return it->value->GetDatabase(); 365 return it->value->GetDatabase();
366 } 366 }
367 367
368 DEFINE_TRACE(InspectorDatabaseAgent) { 368 DEFINE_TRACE(InspectorDatabaseAgent) {
369 visitor->Trace(page_); 369 visitor->Trace(page_);
370 visitor->Trace(resources_); 370 visitor->Trace(resources_);
371 InspectorBaseAgent::Trace(visitor); 371 InspectorBaseAgent::Trace(visitor);
372 } 372 }
373 373
374 } // namespace blink 374 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698