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

Side by Side Diff: Source/core/testing/Internals.h

Issue 169293002: Oilpan: Remove GC_INFO_{DEFINE,DECLARE} macros (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixheaptest Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/testing/InternalProfilers.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 class Node; 62 class Node;
63 class Page; 63 class Page;
64 class PagePopupController; 64 class PagePopupController;
65 class Range; 65 class Range;
66 class ExecutionContext; 66 class ExecutionContext;
67 class SerializedScriptValue; 67 class SerializedScriptValue;
68 class ShadowRoot; 68 class ShadowRoot;
69 class TypeConversions; 69 class TypeConversions;
70 70
71 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna ls>, public ContextLifecycleObserver { 71 class Internals FINAL : public RefCountedWillBeGarbageCollectedFinalized<Interna ls>, public ContextLifecycleObserver {
72 DECLARE_GC_INFO;
73 public: 72 public:
74 static PassRefPtrWillBeRawPtr<Internals> create(Document*); 73 static PassRefPtrWillBeRawPtr<Internals> create(Document*);
75 virtual ~Internals(); 74 virtual ~Internals();
76 75
77 static void resetToConsistentState(Page*); 76 static void resetToConsistentState(Page*);
78 77
79 String elementRenderTreeAsText(Element*, ExceptionState&); 78 String elementRenderTreeAsText(Element*, ExceptionState&);
80 79
81 String address(Node*); 80 String address(Node*);
82 81
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 323 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
325 RefPtr<DOMWindow> m_frontendWindow; 324 RefPtr<DOMWindow> m_frontendWindow;
326 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 325 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
327 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags; 326 RefPtrWillBeMember<InternalRuntimeFlags> m_runtimeFlags;
328 RefPtrWillBeMember<InternalProfilers> m_profilers; 327 RefPtrWillBeMember<InternalProfilers> m_profilers;
329 }; 328 };
330 329
331 } // namespace WebCore 330 } // namespace WebCore
332 331
333 #endif 332 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/InternalProfilers.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698