| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "platform/Timer.h" | 36 #include "platform/Timer.h" |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class GraphicsContext; | 43 class GraphicsContext; |
| 44 class GraphicsLayer; | 44 class GraphicsLayer; |
| 45 class InspectedFrames; | 45 class InspectedFrames; |
| 46 class LayoutObject; | |
| 47 class LayoutRect; | 46 class LayoutRect; |
| 48 class PictureSnapshot; | 47 class PictureSnapshot; |
| 49 class PaintLayer; | 48 class PaintLayer; |
| 50 class PaintLayerCompositor; | 49 class PaintLayerCompositor; |
| 51 | 50 |
| 52 class CORE_EXPORT InspectorLayerTreeAgent final | 51 class CORE_EXPORT InspectorLayerTreeAgent final |
| 53 : public InspectorBaseAgent<protocol::LayerTree::Metainfo> { | 52 : public InspectorBaseAgent<protocol::LayerTree::Metainfo> { |
| 54 WTF_MAKE_NONCOPYABLE(InspectorLayerTreeAgent); | 53 WTF_MAKE_NONCOPYABLE(InspectorLayerTreeAgent); |
| 55 | 54 |
| 56 public: | 55 public: |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 Vector<int, 2> m_pageOverlayLayerIds; | 132 Vector<int, 2> m_pageOverlayLayerIds; |
| 134 | 133 |
| 135 typedef HashMap<String, RefPtr<PictureSnapshot>> SnapshotById; | 134 typedef HashMap<String, RefPtr<PictureSnapshot>> SnapshotById; |
| 136 SnapshotById m_snapshotById; | 135 SnapshotById m_snapshotById; |
| 137 bool m_suppressLayerPaintEvents; | 136 bool m_suppressLayerPaintEvents; |
| 138 }; | 137 }; |
| 139 | 138 |
| 140 } // namespace blink | 139 } // namespace blink |
| 141 | 140 |
| 142 #endif // !defined(InspectorLayerTreeAgent_h) | 141 #endif // !defined(InspectorLayerTreeAgent_h) |
| OLD | NEW |