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

Unified Diff: tools/clang/blink_gc_plugin/Edge.h

Issue 1051643003: Update {virtual,override} to follow C++11 style in tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/Edge.h
diff --git a/tools/clang/blink_gc_plugin/Edge.h b/tools/clang/blink_gc_plugin/Edge.h
index 76599681bab4ba4bfb1e44c90f8519ef1b3e603b..2ea8e544e8e6905ada5f967321683fde0ed8a89a 100644
--- a/tools/clang/blink_gc_plugin/Edge.h
+++ b/tools/clang/blink_gc_plugin/Edge.h
@@ -39,14 +39,14 @@ class EdgeVisitor {
class RecursiveEdgeVisitor : public EdgeVisitor {
public:
// Overrides that recursively walk the edges and record the path.
- virtual void VisitValue(Value*) override;
- virtual void VisitRawPtr(RawPtr*) override;
- virtual void VisitRefPtr(RefPtr*) override;
- virtual void VisitOwnPtr(OwnPtr*) override;
- virtual void VisitMember(Member*) override;
- virtual void VisitWeakMember(WeakMember*) override;
- virtual void VisitPersistent(Persistent*) override;
- virtual void VisitCollection(Collection*) override;
+ void VisitValue(Value*) override;
+ void VisitRawPtr(RawPtr*) override;
+ void VisitRefPtr(RefPtr*) override;
+ void VisitOwnPtr(OwnPtr*) override;
+ void VisitMember(Member*) override;
+ void VisitWeakMember(WeakMember*) override;
+ void VisitPersistent(Persistent*) override;
+ void VisitCollection(Collection*) override;
protected:
typedef std::deque<Edge*> Context;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698