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

Side by Side Diff: Source/modules/accessibility/testing/InternalsAccessibility.cpp

Issue 1202263005: Adding Internals.numberOfLiveAXObjects to test for leaking AXObjects (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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
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 "public/web/WebPluginScriptForbiddenScope.h" 6 #include "InternalsAccessibility.h"
7 7
8 #include "platform/PluginScriptForbiddenScope.h" 8 #include "core/testing/Internals.h"
9 #include "modules/accessibility/AXObject.h"
9 10
10 namespace blink { 11 namespace blink {
11 12
12 bool WebPluginScriptForbiddenScope::isForbidden() 13 unsigned InternalsAccessibility::numberOfLiveAXObjects(Internals&)
13 { 14 {
14 return PluginScriptForbiddenScope::isForbidden(); 15 return AXObject::numberOfLiveAXObjects();
15 } 16 }
16 17
17 } // namespace blink 18 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698