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

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

Issue 1434243002: Oilpan: add missing tracing of WebLocalFrameImpls from inspector agents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/WebKit/Source/web/InspectorRenderingAgent.h ('k') | 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/InspectorState.h" 10 #include "core/inspector/InspectorState.h"
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 if (!webViewImpl()->page()->settings().acceleratedCompositingEnabled()) { 92 if (!webViewImpl()->page()->settings().acceleratedCompositingEnabled()) {
93 if (errorString) 93 if (errorString)
94 *errorString = "Compositing mode is not supported"; 94 *errorString = "Compositing mode is not supported";
95 return false; 95 return false;
96 } 96 }
97 return true; 97 return true;
98 } 98 }
99 99
100 DEFINE_TRACE(InspectorRenderingAgent) 100 DEFINE_TRACE(InspectorRenderingAgent)
101 { 101 {
102 visitor->trace(m_webLocalFrameImpl);
102 InspectorBaseAgent::trace(visitor); 103 InspectorBaseAgent::trace(visitor);
103 } 104 }
104 105
105 } // namespace blink 106 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/InspectorRenderingAgent.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698