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

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

Issue 132233004: Update remaining core classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/InternalSettings.h ('k') | Source/core/testing/MockPagePopupDriver.h » ('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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 class MallocStatistics; 59 class MallocStatistics;
60 class Node; 60 class Node;
61 class Page; 61 class Page;
62 class PagePopupController; 62 class PagePopupController;
63 class Range; 63 class Range;
64 class ExecutionContext; 64 class ExecutionContext;
65 class SerializedScriptValue; 65 class SerializedScriptValue;
66 class ShadowRoot; 66 class ShadowRoot;
67 class TypeConversions; 67 class TypeConversions;
68 68
69 class Internals : public RefCounted<Internals> 69 class Internals FINAL : public RefCounted<Internals>
70 , public ContextLifecycleObserver { 70 , public ContextLifecycleObserver {
71 public: 71 public:
72 static PassRefPtr<Internals> create(Document*); 72 static PassRefPtr<Internals> create(Document*);
73 virtual ~Internals(); 73 virtual ~Internals();
74 74
75 static void resetToConsistentState(Page*); 75 static void resetToConsistentState(Page*);
76 76
77 String elementRenderTreeAsText(Element*, ExceptionState&); 77 String elementRenderTreeAsText(Element*, ExceptionState&);
78 78
79 String address(Node*); 79 String address(Node*);
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 RefPtr<DOMWindow> m_frontendWindow; 317 RefPtr<DOMWindow> m_frontendWindow;
318 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 318 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
319 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 319 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
320 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; 320 RefPtr<ScrollingCoordinator> m_scrollingCoordinator;
321 RefPtr<InternalProfilers> m_profilers; 321 RefPtr<InternalProfilers> m_profilers;
322 }; 322 };
323 323
324 } // namespace WebCore 324 } // namespace WebCore
325 325
326 #endif 326 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/InternalSettings.h ('k') | Source/core/testing/MockPagePopupDriver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698