| 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 30 matching lines...) Expand all Loading... |
| 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/JSONValues.h" | 49 #include "core/platform/JSONValues.h" |
| 50 #include "core/platform/PlatformMouseEvent.h" | 50 #include "core/platform/PlatformMouseEvent.h" |
| 51 #include "core/platform/PlatformTouchEvent.h" | |
| 52 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 51 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
| 53 #include "core/rendering/RenderBoxModelObject.h" | 52 #include "core/rendering/RenderBoxModelObject.h" |
| 54 #include "core/rendering/RenderInline.h" | 53 #include "core/rendering/RenderInline.h" |
| 55 #include "core/rendering/RenderObject.h" | 54 #include "core/rendering/RenderObject.h" |
| 56 #include <wtf/text/StringBuilder.h> | 55 #include "wtf/text/StringBuilder.h" |
| 57 | 56 |
| 58 namespace WebCore { | 57 namespace WebCore { |
| 59 | 58 |
| 60 namespace { | 59 namespace { |
| 61 | 60 |
| 62 class InspectorOverlayChromeClient: public EmptyChromeClient { | 61 class InspectorOverlayChromeClient: public EmptyChromeClient { |
| 63 public: | 62 public: |
| 64 InspectorOverlayChromeClient(ChromeClient* client, InspectorOverlay* overlay
) | 63 InspectorOverlayChromeClient(ChromeClient* client, InspectorOverlay* overlay
) |
| 65 : m_client(client) | 64 : m_client(client) |
| 66 , m_overlay(overlay) | 65 , m_overlay(overlay) |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 | 675 |
| 677 void InspectorOverlay::freePage() | 676 void InspectorOverlay::freePage() |
| 678 { | 677 { |
| 679 m_overlayPage.clear(); | 678 m_overlayPage.clear(); |
| 680 m_overlayChromeClient.clear(); | 679 m_overlayChromeClient.clear(); |
| 681 m_timer.stop(); | 680 m_timer.stop(); |
| 682 } | 681 } |
| 683 | 682 |
| 684 } // namespace WebCore | 683 } // namespace WebCore |
| 685 | 684 |
| OLD | NEW |