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

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

Issue 636913002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « Source/core/testing/InternalSettings.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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 class Page; 67 class Page;
68 class PagePopupController; 68 class PagePopupController;
69 class PrivateScriptTest; 69 class PrivateScriptTest;
70 class Range; 70 class Range;
71 class SerializedScriptValue; 71 class SerializedScriptValue;
72 class ShadowRoot; 72 class ShadowRoot;
73 template <typename NodeType> class StaticNodeTypeList; 73 template <typename NodeType> class StaticNodeTypeList;
74 typedef StaticNodeTypeList<Node> StaticNodeList; 74 typedef StaticNodeTypeList<Node> StaticNodeList;
75 class TypeConversions; 75 class TypeConversions;
76 76
77 class Internals FINAL : public GarbageCollectedFinalized<Internals>, public Scri ptWrappable, public ContextLifecycleObserver { 77 class Internals final : public GarbageCollectedFinalized<Internals>, public Scri ptWrappable, public ContextLifecycleObserver {
78 DEFINE_WRAPPERTYPEINFO(); 78 DEFINE_WRAPPERTYPEINFO();
79 public: 79 public:
80 static Internals* create(Document*); 80 static Internals* create(Document*);
81 virtual ~Internals(); 81 virtual ~Internals();
82 82
83 static void resetToConsistentState(Page*); 83 static void resetToConsistentState(Page*);
84 84
85 String elementRenderTreeAsText(Element*, ExceptionState&); 85 String elementRenderTreeAsText(Element*, ExceptionState&);
86 86
87 String address(Node*); 87 String address(Node*);
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 335 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
336 336
337 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 337 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
338 Member<InternalRuntimeFlags> m_runtimeFlags; 338 Member<InternalRuntimeFlags> m_runtimeFlags;
339 Member<InternalProfilers> m_profilers; 339 Member<InternalProfilers> m_profilers;
340 }; 340 };
341 341
342 } // namespace blink 342 } // namespace blink
343 343
344 #endif // Internals_h 344 #endif // Internals_h
OLDNEW
« no previous file with comments | « Source/core/testing/InternalSettings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698