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

Side by Side Diff: Source/core/page/FrameTree.h

Issue 634883002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/page (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/page/FocusController.h ('k') | Source/core/page/NetworkStateNotifierTest.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) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 10 matching lines...) Expand all
21 #define FrameTree_h 21 #define FrameTree_h
22 22
23 #include "platform/heap/Handle.h" 23 #include "platform/heap/Handle.h"
24 #include "wtf/text/AtomicString.h" 24 #include "wtf/text/AtomicString.h"
25 25
26 namespace blink { 26 namespace blink {
27 27
28 class Frame; 28 class Frame;
29 class TreeScope; 29 class TreeScope;
30 30
31 class FrameTree FINAL { 31 class FrameTree final {
32 WTF_MAKE_NONCOPYABLE(FrameTree); 32 WTF_MAKE_NONCOPYABLE(FrameTree);
33 DISALLOW_ALLOCATION(); 33 DISALLOW_ALLOCATION();
34 public: 34 public:
35 explicit FrameTree(Frame* thisFrame); 35 explicit FrameTree(Frame* thisFrame);
36 ~FrameTree(); 36 ~FrameTree();
37 37
38 const AtomicString& name() const { return m_name; } 38 const AtomicString& name() const { return m_name; }
39 const AtomicString& uniqueName() const { return m_uniqueName; } 39 const AtomicString& uniqueName() const { return m_uniqueName; }
40 // If |name| is not empty, |fallbackName| is ignored. Otherwise, 40 // If |name| is not empty, |fallbackName| is ignored. Otherwise,
41 // |fallbackName| is used as a source of uniqueName. 41 // |fallbackName| is used as a source of uniqueName.
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 }; 79 };
80 80
81 } // namespace blink 81 } // namespace blink
82 82
83 #ifndef NDEBUG 83 #ifndef NDEBUG
84 // Outside the WebCore namespace for ease of invocation from gdb. 84 // Outside the WebCore namespace for ease of invocation from gdb.
85 void showFrameTree(const blink::Frame*); 85 void showFrameTree(const blink::Frame*);
86 #endif 86 #endif
87 87
88 #endif // FrameTree_h 88 #endif // FrameTree_h
OLDNEW
« no previous file with comments | « Source/core/page/FocusController.h ('k') | Source/core/page/NetworkStateNotifierTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698