Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: Source/core/inspector/InspectorOverlay.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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/frame/Frame.h" 45 #include "core/frame/Frame.h"
46 #include "core/frame/FrameView.h" 46 #include "core/frame/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/graphics/GraphicsContextStateSaver.h"
50 #include "core/rendering/RenderBoxModelObject.h" 49 #include "core/rendering/RenderBoxModelObject.h"
51 #include "core/rendering/RenderInline.h" 50 #include "core/rendering/RenderInline.h"
52 #include "core/rendering/RenderObject.h" 51 #include "core/rendering/RenderObject.h"
53 #include "core/rendering/style/RenderStyleConstants.h" 52 #include "core/rendering/style/RenderStyleConstants.h"
54 #include "platform/JSONValues.h" 53 #include "platform/JSONValues.h"
55 #include "platform/PlatformMouseEvent.h" 54 #include "platform/PlatformMouseEvent.h"
55 #include "platform/graphics/GraphicsContextStateSaver.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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 m_timer.stop(); 686 m_timer.stop();
687 } 687 }
688 688
689 void InspectorOverlay::startedRecordingProfile() 689 void InspectorOverlay::startedRecordingProfile()
690 { 690 {
691 if (!m_activeProfilerCount++) 691 if (!m_activeProfilerCount++)
692 freePage(); 692 freePage();
693 } 693 }
694 694
695 } // namespace WebCore 695 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/inspector/InspectorTimelineAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698