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

Side by Side Diff: Source/core/inspector/InspectorDatabaseAgent.cpp

Issue 25223002: Move core/platform/sql into modules/webdatabase (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Attempt to fix the mac build Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/platform/sql/SQLValue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 31
32 #include "InspectorFrontend.h" 32 #include "InspectorFrontend.h"
33 #include "bindings/v8/ExceptionStatePlaceholder.h" 33 #include "bindings/v8/ExceptionStatePlaceholder.h"
34 #include "core/html/VoidCallback.h" 34 #include "core/html/VoidCallback.h"
35 #include "core/inspector/InspectorDatabaseResource.h" 35 #include "core/inspector/InspectorDatabaseResource.h"
36 #include "core/inspector/InspectorState.h" 36 #include "core/inspector/InspectorState.h"
37 #include "core/inspector/InstrumentingAgents.h" 37 #include "core/inspector/InstrumentingAgents.h"
38 #include "core/loader/DocumentLoader.h" 38 #include "core/loader/DocumentLoader.h"
39 #include "core/page/Frame.h" 39 #include "core/page/Frame.h"
40 #include "core/page/Page.h" 40 #include "core/page/Page.h"
41 #include "core/platform/sql/SQLValue.h"
42 #include "modules/webdatabase/Database.h" 41 #include "modules/webdatabase/Database.h"
43 #include "modules/webdatabase/SQLError.h" 42 #include "modules/webdatabase/SQLError.h"
44 #include "modules/webdatabase/SQLResultSet.h" 43 #include "modules/webdatabase/SQLResultSet.h"
45 #include "modules/webdatabase/SQLResultSetRowList.h" 44 #include "modules/webdatabase/SQLResultSetRowList.h"
46 #include "modules/webdatabase/SQLStatementCallback.h" 45 #include "modules/webdatabase/SQLStatementCallback.h"
47 #include "modules/webdatabase/SQLStatementErrorCallback.h" 46 #include "modules/webdatabase/SQLStatementErrorCallback.h"
48 #include "modules/webdatabase/SQLTransaction.h" 47 #include "modules/webdatabase/SQLTransaction.h"
49 #include "modules/webdatabase/SQLTransactionCallback.h" 48 #include "modules/webdatabase/SQLTransactionCallback.h"
50 #include "modules/webdatabase/SQLTransactionErrorCallback.h" 49 #include "modules/webdatabase/SQLTransactionErrorCallback.h"
50 #include "modules/webdatabase/sqlite/SQLValue.h"
51 #include "platform/JSONValues.h" 51 #include "platform/JSONValues.h"
52 #include "wtf/Vector.h" 52 #include "wtf/Vector.h"
53 53
54 typedef WebCore::InspectorBackendDispatcher::DatabaseCommandHandler::ExecuteSQLC allback ExecuteSQLCallback; 54 typedef WebCore::InspectorBackendDispatcher::DatabaseCommandHandler::ExecuteSQLC allback ExecuteSQLCallback;
55 55
56 namespace WebCore { 56 namespace WebCore {
57 57
58 namespace DatabaseAgentState { 58 namespace DatabaseAgentState {
59 static const char databaseAgentEnabled[] = "databaseAgentEnabled"; 59 static const char databaseAgentEnabled[] = "databaseAgentEnabled";
60 }; 60 };
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 323
324 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId) 324 Database* InspectorDatabaseAgent::databaseForId(const String& databaseId)
325 { 325 {
326 DatabaseResourcesMap::iterator it = m_resources.find(databaseId); 326 DatabaseResourcesMap::iterator it = m_resources.find(databaseId);
327 if (it == m_resources.end()) 327 if (it == m_resources.end())
328 return 0; 328 return 0;
329 return it->value->database(); 329 return it->value->database();
330 } 330 }
331 331
332 } // namespace WebCore 332 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/platform/sql/SQLValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698