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

Side by Side Diff: third_party/WebKit/Source/web/WebFrameImplBase.h

Issue 2389633002: reflow comments in web/ (Closed)
Patch Set: . Created 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WebFrameImplBase_h 5 #ifndef WebFrameImplBase_h
6 #define WebFrameImplBase_h 6 #define WebFrameImplBase_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "web/WebExport.h" 9 #include "web/WebExport.h"
10 #include "wtf/text/AtomicString.h" 10 #include "wtf/text/AtomicString.h"
(...skipping 19 matching lines...) Expand all
30 // than the previous manual dispatch emulating real virtual dispatch. 30 // than the previous manual dispatch emulating real virtual dispatch.
31 class WEB_EXPORT WebFrameImplBase 31 class WEB_EXPORT WebFrameImplBase
32 : public GarbageCollectedFinalized<WebFrameImplBase> { 32 : public GarbageCollectedFinalized<WebFrameImplBase> {
33 public: 33 public:
34 virtual ~WebFrameImplBase(); 34 virtual ~WebFrameImplBase();
35 35
36 virtual void initializeCoreFrame(FrameHost*, 36 virtual void initializeCoreFrame(FrameHost*,
37 FrameOwner*, 37 FrameOwner*,
38 const AtomicString& name, 38 const AtomicString& name,
39 const AtomicString& uniqueName) = 0; 39 const AtomicString& uniqueName) = 0;
40 // TODO(dcheng): Rename this to coreFrame()? This probably also shouldn't be c onst... 40 // TODO(dcheng): Rename this to coreFrame()? This probably also shouldn't be
41 // const...
41 virtual Frame* frame() const = 0; 42 virtual Frame* frame() const = 0;
42 43
43 DECLARE_VIRTUAL_TRACE(); 44 DECLARE_VIRTUAL_TRACE();
44 }; 45 };
45 46
46 } // namespace blink 47 } // namespace blink
47 48
48 #endif // WebFrameImplBase_h 49 #endif // WebFrameImplBase_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameContentDumper.cpp ('k') | third_party/WebKit/Source/web/WebFrameSerializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698