| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 21 matching lines...) Expand all Loading... |
| 32 #define InspectorPageAgent_h | 32 #define InspectorPageAgent_h |
| 33 | 33 |
| 34 | 34 |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "core/inspector/InspectorBaseAgent.h" | 36 #include "core/inspector/InspectorBaseAgent.h" |
| 37 #include "core/inspector/protocol/Page.h" | 37 #include "core/inspector/protocol/Page.h" |
| 38 #include "core/page/ChromeClient.h" | 38 #include "core/page/ChromeClient.h" |
| 39 #include "wtf/HashMap.h" | 39 #include "wtf/HashMap.h" |
| 40 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 41 | 41 |
| 42 namespace v8_inspector { | 42 #include <v8-inspector.h> |
| 43 class V8InspectorSession; | |
| 44 } | |
| 45 | 43 |
| 46 namespace blink { | 44 namespace blink { |
| 47 | 45 |
| 48 class Resource; | 46 class Resource; |
| 49 class Document; | 47 class Document; |
| 50 class DocumentLoader; | 48 class DocumentLoader; |
| 51 class InspectedFrames; | 49 class InspectedFrames; |
| 52 class InspectorCSSAgent; | 50 class InspectorCSSAgent; |
| 53 class InspectorResourceContentLoader; | 51 class InspectorResourceContentLoader; |
| 54 class KURL; | 52 class KURL; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 bool m_reloading; | 157 bool m_reloading; |
| 160 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader; | 158 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader; |
| 161 int m_resourceContentLoaderClientId; | 159 int m_resourceContentLoaderClientId; |
| 162 }; | 160 }; |
| 163 | 161 |
| 164 | 162 |
| 165 } // namespace blink | 163 } // namespace blink |
| 166 | 164 |
| 167 | 165 |
| 168 #endif // !defined(InspectorPagerAgent_h) | 166 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |