| 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #ifndef InspectorOverlay_h | 29 #ifndef InspectorOverlay_h |
| 30 #define InspectorOverlay_h | 30 #define InspectorOverlay_h |
| 31 | 31 |
| 32 #include "core/platform/graphics/Color.h" | 32 #include "core/platform/graphics/Color.h" |
| 33 #include "core/platform/graphics/FloatQuad.h" | 33 #include "core/platform/graphics/FloatQuad.h" |
| 34 #include "core/platform/graphics/LayoutRect.h" | 34 #include "core/platform/graphics/LayoutRect.h" |
| 35 #include "core/platform/Timer.h" | 35 #include "core/platform/Timer.h" |
| 36 | 36 #include "wtf/OwnPtr.h" |
| 37 #include <wtf/OwnPtr.h> | 37 #include "wtf/PassOwnPtr.h" |
| 38 #include <wtf/PassOwnPtr.h> | 38 #include "wtf/RefPtr.h" |
| 39 #include <wtf/RefPtr.h> | 39 #include "wtf/Vector.h" |
| 40 #include <wtf/text/WTFString.h> | 40 #include "wtf/text/WTFString.h" |
| 41 #include <wtf/Vector.h> | |
| 42 | 41 |
| 43 namespace WebCore { | 42 namespace WebCore { |
| 44 | 43 |
| 45 class Color; | 44 class Color; |
| 46 class EmptyChromeClient; | 45 class EmptyChromeClient; |
| 47 class GraphicsContext; | 46 class GraphicsContext; |
| 48 class InspectorClient; | 47 class InspectorClient; |
| 49 class InspectorOverlayHost; | 48 class InspectorOverlayHost; |
| 50 class IntRect; | 49 class IntRect; |
| 51 class JSONValue; | 50 class JSONValue; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 bool m_drawViewSizeWithGrid; | 185 bool m_drawViewSizeWithGrid; |
| 187 Timer<InspectorOverlay> m_timer; | 186 Timer<InspectorOverlay> m_timer; |
| 188 unsigned m_overrides; | 187 unsigned m_overrides; |
| 189 int m_overridesTopOffset; | 188 int m_overridesTopOffset; |
| 190 }; | 189 }; |
| 191 | 190 |
| 192 } // namespace WebCore | 191 } // namespace WebCore |
| 193 | 192 |
| 194 | 193 |
| 195 #endif // InspectorOverlay_h | 194 #endif // InspectorOverlay_h |
| OLD | NEW |