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

Unified Diff: Source/WebCore/inspector/InjectedScriptHost.h

Issue 13774005: Remove the ENABLE_SQL_DATABASE compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: python Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/inspector/CodeGeneratorInspector.py ('k') | Source/WebCore/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/InjectedScriptHost.h
diff --git a/Source/WebCore/inspector/InjectedScriptHost.h b/Source/WebCore/inspector/InjectedScriptHost.h
index 5b85a50dd9fe1bf74377279e16bb60b533856963..033fd2e1ba1e2f06ca3093ef4a8aaf2b3786445c 100644
--- a/Source/WebCore/inspector/InjectedScriptHost.h
+++ b/Source/WebCore/inspector/InjectedScriptHost.h
@@ -64,9 +64,7 @@ public:
void init(InspectorAgent* inspectorAgent
, InspectorConsoleAgent* consoleAgent
-#if ENABLE(SQL_DATABASE)
, InspectorDatabaseAgent* databaseAgent
-#endif
, InspectorDOMStorageAgent* domStorageAgent
, InspectorDOMAgent* domAgent
, InspectorDebuggerAgent* debuggerAgent
@@ -74,9 +72,7 @@ public:
{
m_inspectorAgent = inspectorAgent;
m_consoleAgent = consoleAgent;
-#if ENABLE(SQL_DATABASE)
m_databaseAgent = databaseAgent;
-#endif
m_domStorageAgent = domStorageAgent;
m_domAgent = domAgent;
m_debuggerAgent = debuggerAgent;
@@ -102,9 +98,7 @@ public:
void clearConsoleMessages();
void copyText(const String& text);
-#if ENABLE(SQL_DATABASE)
String databaseIdImpl(Database*);
-#endif
String storageIdImpl(Storage*);
ScriptDebugServer& scriptDebugServer();
@@ -114,9 +108,7 @@ private:
InspectorAgent* m_inspectorAgent;
InspectorConsoleAgent* m_consoleAgent;
-#if ENABLE(SQL_DATABASE)
InspectorDatabaseAgent* m_databaseAgent;
-#endif
InspectorDOMStorageAgent* m_domStorageAgent;
InspectorDOMAgent* m_domAgent;
InspectorDebuggerAgent* m_debuggerAgent;
« no previous file with comments | « Source/WebCore/inspector/CodeGeneratorInspector.py ('k') | Source/WebCore/inspector/InjectedScriptHost.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698