| OLD | NEW |
| 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "ConsoleAPITypes.h" | 35 #include "ConsoleAPITypes.h" |
| 36 #include "ConsoleTypes.h" | 36 #include "ConsoleTypes.h" |
| 37 #include "Element.h" | 37 #include "Element.h" |
| 38 #include "EventContext.h" | 38 #include "EventContext.h" |
| 39 #include "FormData.h" | 39 #include "FormData.h" |
| 40 #include "Frame.h" | 40 #include "Frame.h" |
| 41 #include "HitTestResult.h" | 41 #include "HitTestResult.h" |
| 42 #include "Page.h" | 42 #include "Page.h" |
| 43 #include "ScriptExecutionContext.h" | 43 #include "ScriptExecutionContext.h" |
| 44 #include "ScriptState.h" | 44 #include "ScriptState.h" |
| 45 #include "StorageArea.h" | |
| 46 #include "WebSocketFrame.h" | 45 #include "WebSocketFrame.h" |
| 47 #include "WebSocketHandshakeRequest.h" | 46 #include "WebSocketHandshakeRequest.h" |
| 48 #include "WebSocketHandshakeResponse.h" | 47 #include "WebSocketHandshakeResponse.h" |
| 48 #include "core/storage/StorageArea.h" |
| 49 #include <wtf/RefPtr.h> | 49 #include <wtf/RefPtr.h> |
| 50 #include <wtf/UnusedParam.h> | 50 #include <wtf/UnusedParam.h> |
| 51 | 51 |
| 52 namespace WebCore { | 52 namespace WebCore { |
| 53 | 53 |
| 54 class CSSRule; | 54 class CSSRule; |
| 55 class CachedResource; | 55 class CachedResource; |
| 56 class CharacterData; | 56 class CharacterData; |
| 57 class DOMWindow; | 57 class DOMWindow; |
| 58 class DOMWrapperWorld; | 58 class DOMWrapperWorld; |
| (...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1379 if (!page && document->templateDocumentHost()) | 1379 if (!page && document->templateDocumentHost()) |
| 1380 page = document->templateDocumentHost()->page(); | 1380 page = document->templateDocumentHost()->page(); |
| 1381 return instrumentingAgentsForPage(page); | 1381 return instrumentingAgentsForPage(page); |
| 1382 } | 1382 } |
| 1383 return 0; | 1383 return 0; |
| 1384 } | 1384 } |
| 1385 | 1385 |
| 1386 } // namespace WebCore | 1386 } // namespace WebCore |
| 1387 | 1387 |
| 1388 #endif // !defined(InspectorInstrumentation_h) | 1388 #endif // !defined(InspectorInstrumentation_h) |
| OLD | NEW |