| 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 28 matching lines...) Expand all Loading... |
| 39 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 #include <v8-inspector.h> | 41 #include <v8-inspector.h> |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class Resource; | 45 class Resource; |
| 46 class Document; | 46 class Document; |
| 47 class DocumentLoader; | 47 class DocumentLoader; |
| 48 class InspectedFrames; | 48 class InspectedFrames; |
| 49 class InspectorCSSAgent; | |
| 50 class InspectorResourceContentLoader; | 49 class InspectorResourceContentLoader; |
| 51 class KURL; | 50 class KURL; |
| 52 class LocalFrame; | 51 class LocalFrame; |
| 53 class SharedBuffer; | 52 class SharedBuffer; |
| 54 class TextResourceDecoder; | |
| 55 | 53 |
| 56 using blink::protocol::Maybe; | 54 using blink::protocol::Maybe; |
| 57 | 55 |
| 58 class CORE_EXPORT InspectorPageAgent final | 56 class CORE_EXPORT InspectorPageAgent final |
| 59 : public InspectorBaseAgent<protocol::Page::Metainfo> { | 57 : public InspectorBaseAgent<protocol::Page::Metainfo> { |
| 60 WTF_MAKE_NONCOPYABLE(InspectorPageAgent); | 58 WTF_MAKE_NONCOPYABLE(InspectorPageAgent); |
| 61 | 59 |
| 62 public: | 60 public: |
| 63 class Client { | 61 class Client { |
| 64 public: | 62 public: |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 String m_scriptToEvaluateOnLoadOnce; | 203 String m_scriptToEvaluateOnLoadOnce; |
| 206 bool m_enabled; | 204 bool m_enabled; |
| 207 bool m_reloading; | 205 bool m_reloading; |
| 208 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader; | 206 Member<InspectorResourceContentLoader> m_inspectorResourceContentLoader; |
| 209 int m_resourceContentLoaderClientId; | 207 int m_resourceContentLoaderClientId; |
| 210 }; | 208 }; |
| 211 | 209 |
| 212 } // namespace blink | 210 } // namespace blink |
| 213 | 211 |
| 214 #endif // !defined(InspectorPagerAgent_h) | 212 #endif // !defined(InspectorPagerAgent_h) |
| OLD | NEW |