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 28 matching lines...) Expand all Loading... |
39 #include "core/inspector/InspectorClient.h" | 39 #include "core/inspector/InspectorClient.h" |
40 #include "core/inspector/InspectorOverlayHost.h" | 40 #include "core/inspector/InspectorOverlayHost.h" |
41 #include "core/loader/DocumentLoader.h" | 41 #include "core/loader/DocumentLoader.h" |
42 #include "core/loader/EmptyClients.h" | 42 #include "core/loader/EmptyClients.h" |
43 #include "core/page/Chrome.h" | 43 #include "core/page/Chrome.h" |
44 #include "core/page/EventHandler.h" | 44 #include "core/page/EventHandler.h" |
45 #include "core/page/Frame.h" | 45 #include "core/page/Frame.h" |
46 #include "core/page/FrameView.h" | 46 #include "core/page/FrameView.h" |
47 #include "core/page/Page.h" | 47 #include "core/page/Page.h" |
48 #include "core/page/Settings.h" | 48 #include "core/page/Settings.h" |
49 #include "core/platform/PlatformMouseEvent.h" | |
50 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 49 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
51 #include "core/rendering/RenderBoxModelObject.h" | 50 #include "core/rendering/RenderBoxModelObject.h" |
52 #include "core/rendering/RenderInline.h" | 51 #include "core/rendering/RenderInline.h" |
53 #include "core/rendering/RenderObject.h" | 52 #include "core/rendering/RenderObject.h" |
54 #include "core/rendering/style/RenderStyleConstants.h" | 53 #include "core/rendering/style/RenderStyleConstants.h" |
55 #include "platform/JSONValues.h" | 54 #include "platform/JSONValues.h" |
| 55 #include "platform/PlatformMouseEvent.h" |
56 #include "wtf/text/StringBuilder.h" | 56 #include "wtf/text/StringBuilder.h" |
57 | 57 |
58 namespace WebCore { | 58 namespace WebCore { |
59 | 59 |
60 namespace { | 60 namespace { |
61 | 61 |
62 class InspectorOverlayChromeClient: public EmptyChromeClient { | 62 class InspectorOverlayChromeClient: public EmptyChromeClient { |
63 public: | 63 public: |
64 InspectorOverlayChromeClient(ChromeClient& client, InspectorOverlay* overlay
) | 64 InspectorOverlayChromeClient(ChromeClient& client, InspectorOverlay* overlay
) |
65 : m_client(client) | 65 : m_client(client) |
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 } | 710 } |
711 | 711 |
712 void InspectorOverlay::freePage() | 712 void InspectorOverlay::freePage() |
713 { | 713 { |
714 m_overlayPage.clear(); | 714 m_overlayPage.clear(); |
715 m_overlayChromeClient.clear(); | 715 m_overlayChromeClient.clear(); |
716 m_timer.stop(); | 716 m_timer.stop(); |
717 } | 717 } |
718 | 718 |
719 } // namespace WebCore | 719 } // namespace WebCore |
OLD | NEW |