| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> | 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> |
| 4 * Copyright (C) 2010 Google Inc. All rights reserved. | 4 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * | 9 * |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 #include "InspectorAgent.h" | 40 #include "InspectorAgent.h" |
| 41 #include "InspectorClient.h" | 41 #include "InspectorClient.h" |
| 42 #include "InspectorConsoleAgent.h" | 42 #include "InspectorConsoleAgent.h" |
| 43 #include "InspectorDOMAgent.h" | 43 #include "InspectorDOMAgent.h" |
| 44 #include "InspectorDOMStorageAgent.h" | 44 #include "InspectorDOMStorageAgent.h" |
| 45 #include "InspectorDatabaseAgent.h" | 45 #include "InspectorDatabaseAgent.h" |
| 46 #include "InspectorDebuggerAgent.h" | 46 #include "InspectorDebuggerAgent.h" |
| 47 #include "InspectorFrontend.h" | 47 #include "InspectorFrontend.h" |
| 48 #include "InspectorValues.h" | 48 #include "InspectorValues.h" |
| 49 #include "Pasteboard.h" | 49 #include "Pasteboard.h" |
| 50 #include "Storage.h" | 50 #include "core/storage/Storage.h" |
| 51 | 51 |
| 52 | 52 |
| 53 #include "markup.h" | 53 #include "markup.h" |
| 54 | 54 |
| 55 #include <wtf/RefPtr.h> | 55 #include <wtf/RefPtr.h> |
| 56 #include <wtf/StdLibExtras.h> | 56 #include <wtf/StdLibExtras.h> |
| 57 | 57 |
| 58 using namespace std; | 58 using namespace std; |
| 59 | 59 |
| 60 namespace WebCore { | 60 namespace WebCore { |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 } | 153 } |
| 154 | 154 |
| 155 ScriptDebugServer& InjectedScriptHost::scriptDebugServer() | 155 ScriptDebugServer& InjectedScriptHost::scriptDebugServer() |
| 156 { | 156 { |
| 157 return m_debuggerAgent->scriptDebugServer(); | 157 return m_debuggerAgent->scriptDebugServer(); |
| 158 } | 158 } |
| 159 | 159 |
| 160 | 160 |
| 161 } // namespace WebCore | 161 } // namespace WebCore |
| 162 | 162 |
| OLD | NEW |