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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 1370923002: Enforce marking "override" for functions overriding Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed one Created 5 years 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 | « content/renderer/media/canvas_capture_handler.h ('k') | content/renderer/vr/vr_dispatcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 blink::WebSandboxFlags sandboxFlags, 425 blink::WebSandboxFlags sandboxFlags,
426 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; 426 const blink::WebFrameOwnerProperties& frameOwnerProperties) override;
427 void didChangeOpener(blink::WebFrame* frame) override; 427 void didChangeOpener(blink::WebFrame* frame) override;
428 void frameDetached(blink::WebFrame* frame, DetachType type) override; 428 void frameDetached(blink::WebFrame* frame, DetachType type) override;
429 void frameFocused() override; 429 void frameFocused() override;
430 void willClose(blink::WebFrame* frame) override; 430 void willClose(blink::WebFrame* frame) override;
431 void didChangeName(blink::WebLocalFrame* frame, 431 void didChangeName(blink::WebLocalFrame* frame,
432 const blink::WebString& name) override; 432 const blink::WebString& name) override;
433 void didChangeSandboxFlags(blink::WebFrame* child_frame, 433 void didChangeSandboxFlags(blink::WebFrame* child_frame,
434 blink::WebSandboxFlags flags) override; 434 blink::WebSandboxFlags flags) override;
435 virtual void didChangeFrameOwnerProperties( 435 void didChangeFrameOwnerProperties(
436 blink::WebFrame* child_frame, 436 blink::WebFrame* child_frame,
437 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 437 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
438 void didMatchCSS( 438 void didMatchCSS(
439 blink::WebLocalFrame* frame, 439 blink::WebLocalFrame* frame,
440 const blink::WebVector<blink::WebString>& newly_matching_selectors, 440 const blink::WebVector<blink::WebString>& newly_matching_selectors,
441 const blink::WebVector<blink::WebString>& stopped_matching_selectors) 441 const blink::WebVector<blink::WebString>& stopped_matching_selectors)
442 override; 442 override;
443 bool shouldReportDetailedMessageForSource( 443 bool shouldReportDetailedMessageForSource(
444 const blink::WebString& source) override; 444 const blink::WebString& source) override;
445 void didAddMessageToConsole(const blink::WebConsoleMessage& message, 445 void didAddMessageToConsole(const blink::WebConsoleMessage& message,
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1117 #endif 1117 #endif
1118 1118
1119 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1119 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1120 1120
1121 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1121 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1122 }; 1122 };
1123 1123
1124 } // namespace content 1124 } // namespace content
1125 1125
1126 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1126 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/canvas_capture_handler.h ('k') | content/renderer/vr/vr_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698