| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "core/InspectorTypeBuilder.h" | 32 #include "core/InspectorTypeBuilder.h" |
| 33 #include "core/inspector/InspectorOverlay.h" | 33 #include "core/inspector/InspectorOverlay.h" |
| 34 #include "core/inspector/InspectorOverlayHost.h" | 34 #include "core/inspector/InspectorOverlayHost.h" |
| 35 #include "platform/Timer.h" | 35 #include "platform/Timer.h" |
| 36 #include "platform/geometry/FloatQuad.h" | 36 #include "platform/geometry/FloatQuad.h" |
| 37 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
| 38 #include "platform/graphics/Color.h" | 38 #include "platform/graphics/Color.h" |
| 39 #include "platform/heap/Handle.h" | 39 #include "platform/heap/Handle.h" |
| 40 #include "public/web/WebInputEvent.h" | 40 #include "public/web/WebInputEvent.h" |
| 41 #include "public/web/WebPageOverlay.h" | 41 #include "web/WebPageOverlay.h" |
| 42 #include "wtf/OwnPtr.h" | 42 #include "wtf/OwnPtr.h" |
| 43 #include "wtf/PassOwnPtr.h" | 43 #include "wtf/PassOwnPtr.h" |
| 44 #include "wtf/RefPtr.h" | 44 #include "wtf/RefPtr.h" |
| 45 #include "wtf/text/WTFString.h" | 45 #include "wtf/text/WTFString.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class Color; | 49 class Color; |
| 50 class EmptyChromeClient; | 50 class EmptyChromeClient; |
| 51 class LocalFrame; | 51 class LocalFrame; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 bool m_inLayout; | 131 bool m_inLayout; |
| 132 bool m_needsUpdate; | 132 bool m_needsUpdate; |
| 133 RawPtrWillBeMember<InspectorOverlay::Listener> m_listener; | 133 RawPtrWillBeMember<InspectorOverlay::Listener> m_listener; |
| 134 OwnPtrWillBeMember<LayoutEditor> m_layoutEditor; | 134 OwnPtrWillBeMember<LayoutEditor> m_layoutEditor; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 } // namespace blink | 137 } // namespace blink |
| 138 | 138 |
| 139 | 139 |
| 140 #endif // InspectorOverlayImpl_h | 140 #endif // InspectorOverlayImpl_h |
| OLD | NEW |