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

Side by Side Diff: Source/core/inspector/DOMEditor.h

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits 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/inspector/ConsoleMessageStorage.h ('k') | Source/core/inspector/DOMEditor.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 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 26 matching lines...) Expand all
37 namespace blink { 37 namespace blink {
38 38
39 class Element; 39 class Element;
40 class ExceptionState; 40 class ExceptionState;
41 class InspectorHistory; 41 class InspectorHistory;
42 class Node; 42 class Node;
43 class Text; 43 class Text;
44 44
45 typedef String ErrorString; 45 typedef String ErrorString;
46 46
47 class DOMEditor FINAL : public NoBaseWillBeGarbageCollected<DOMEditor> { 47 class DOMEditor final : public NoBaseWillBeGarbageCollected<DOMEditor> {
48 WTF_MAKE_NONCOPYABLE(DOMEditor); 48 WTF_MAKE_NONCOPYABLE(DOMEditor);
49 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED; 49 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
50 public: 50 public:
51 explicit DOMEditor(InspectorHistory*); 51 explicit DOMEditor(InspectorHistory*);
52 52
53 void trace(Visitor*); 53 void trace(Visitor*);
54 54
55 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch orNode, ExceptionState&); 55 bool insertBefore(Node* parentNode, PassRefPtrWillBeRawPtr<Node>, Node* anch orNode, ExceptionState&);
56 bool removeChild(Node* parentNode, Node*, ExceptionState&); 56 bool removeChild(Node* parentNode, Node*, ExceptionState&);
57 bool setAttribute(Element*, const String& name, const String& value, Excepti onState&); 57 bool setAttribute(Element*, const String& name, const String& value, Excepti onState&);
(...skipping 21 matching lines...) Expand all
79 class ReplaceChildNodeAction; 79 class ReplaceChildNodeAction;
80 class SetNodeValueAction; 80 class SetNodeValueAction;
81 81
82 RawPtrWillBeMember<InspectorHistory> m_history; 82 RawPtrWillBeMember<InspectorHistory> m_history;
83 }; 83 };
84 84
85 85
86 } // namespace blink 86 } // namespace blink
87 87
88 #endif // !defined(DOMEditor_h) 88 #endif // !defined(DOMEditor_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/ConsoleMessageStorage.h ('k') | Source/core/inspector/DOMEditor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698