| 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;
|
|
|