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

Side by Side Diff: Source/web/InspectorRenderingAgent.cpp

Issue 1014533006: Oilpan: fix build after r191942. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "web/InspectorRenderingAgent.h" 6 #include "web/InspectorRenderingAgent.h"
7 7
8 #include "core/frame/FrameView.h" 8 #include "core/frame/FrameView.h"
9 #include "core/frame/Settings.h" 9 #include "core/frame/Settings.h"
10 #include "core/inspector/InspectorOverlay.h"
10 #include "core/inspector/InspectorState.h" 11 #include "core/inspector/InspectorState.h"
11 #include "core/page/Page.h" 12 #include "core/page/Page.h"
12 #include "web/WebLocalFrameImpl.h" 13 #include "web/WebLocalFrameImpl.h"
13 #include "web/WebViewImpl.h" 14 #include "web/WebViewImpl.h"
14 15
15 namespace blink { 16 namespace blink {
16 17
17 namespace RenderingAgentState { 18 namespace RenderingAgentState {
18 static const char continuousPaintingEnabled[] = "continuousPaintingEnabled"; 19 static const char continuousPaintingEnabled[] = "continuousPaintingEnabled";
19 static const char showDebugBorders[] = "showDebugBorders"; 20 static const char showDebugBorders[] = "showDebugBorders";
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 return true; 106 return true;
106 } 107 }
107 108
108 DEFINE_TRACE(InspectorRenderingAgent) 109 DEFINE_TRACE(InspectorRenderingAgent)
109 { 110 {
110 visitor->trace(m_overlay); 111 visitor->trace(m_overlay);
111 InspectorBaseAgent::trace(visitor); 112 InspectorBaseAgent::trace(visitor);
112 } 113 }
113 114
114 } // namespace blink 115 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698