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

Side by Side Diff: chromecast/renderer/cast_media_load_deferrer.cc

Issue 2034153002: Makes RenderFrameObserver/RenderViewObserver::OnDestruct pure virtual. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments. Created 4 years, 6 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "chromecast/renderer/cast_media_load_deferrer.h" 5 #include "chromecast/renderer/cast_media_load_deferrer.h"
6 6
7 #include "base/callback_helpers.h" 7 #include "base/callback_helpers.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 9
10 namespace chromecast { 10 namespace chromecast {
11 11
12 CastMediaLoadDeferrer::CastMediaLoadDeferrer( 12 CastMediaLoadDeferrer::CastMediaLoadDeferrer(
13 content::RenderFrame* render_frame, 13 content::RenderFrame* render_frame,
14 const base::Closure& continue_loading_cb) 14 const base::Closure& continue_loading_cb)
15 : content::RenderFrameObserver(render_frame), 15 : content::RenderFrameObserver(render_frame),
16 continue_loading_cb_(continue_loading_cb) { 16 continue_loading_cb_(continue_loading_cb) {
17 DCHECK(!continue_loading_cb_.is_null()); 17 DCHECK(!continue_loading_cb_.is_null());
18 } 18 }
19 19
20 CastMediaLoadDeferrer::~CastMediaLoadDeferrer() {} 20 CastMediaLoadDeferrer::~CastMediaLoadDeferrer() {}
21 21
22 void CastMediaLoadDeferrer::WasShown() { 22 void CastMediaLoadDeferrer::WasShown() {
23 continue_loading_cb_.Run(); 23 continue_loading_cb_.Run();
24 delete this; 24 delete this;
25 } 25 }
26 26
27 void CastMediaLoadDeferrer::OnDestruct() {
28 delete this;
29 }
30
27 } // namespace chromecast 31 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/renderer/cast_media_load_deferrer.h ('k') | components/autofill/content/renderer/page_click_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698