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

Side by Side Diff: chrome/renderer/safe_browsing/phishing_thumbnailer.cc

Issue 6250176: Make RenderView not have to know about how PhishingClassifierDelegate. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/renderer/safe_browsing/phishing_thumbnailer.h" 5 #include "chrome/renderer/safe_browsing/phishing_thumbnailer.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/time.h" 9 #include "base/time.h"
10 #include "chrome/renderer/render_view.h" 10 #include "chrome/renderer/render_view.h"
(...skipping 10 matching lines...) Expand all
21 using WebKit::WebRect; 21 using WebKit::WebRect;
22 using WebKit::WebSize; 22 using WebKit::WebSize;
23 using WebKit::WebView; 23 using WebKit::WebView;
24 24
25 namespace safe_browsing { 25 namespace safe_browsing {
26 26
27 SkBitmap GrabPhishingThumbnail(RenderView* render_view, 27 SkBitmap GrabPhishingThumbnail(RenderView* render_view,
28 const gfx::Size& view_size, 28 const gfx::Size& view_size,
29 const gfx::Size& thumbnail_size) { 29 const gfx::Size& thumbnail_size) {
30 if (!render_view || !render_view->webview()) { 30 if (!render_view || !render_view->webview()) {
31 NOTREACHED(); 31 return SkBitmap(); // The WebView is going away.
32 return SkBitmap();
33 } 32 }
34 WebView* view = render_view->webview(); 33 WebView* view = render_view->webview();
35 base::TimeTicks beginning_time = base::TimeTicks::Now(); 34 base::TimeTicks beginning_time = base::TimeTicks::Now();
36 skia::PlatformCanvas canvas; 35 skia::PlatformCanvas canvas;
37 if (!canvas.initialize(view_size.width(), view_size.height(), true)) { 36 if (!canvas.initialize(view_size.width(), view_size.height(), true)) {
38 return SkBitmap(); 37 return SkBitmap();
39 } 38 }
40 39
41 // Make sure we are not using any zoom when we take the snapshot. We will 40 // Make sure we are not using any zoom when we take the snapshot. We will
42 // restore the previous zoom level after the snapshot is taken. 41 // restore the previous zoom level after the snapshot is taken.
(...skipping 30 matching lines...) Expand all
73 view->mainFrame()->setCanHaveScrollbars( 72 view->mainFrame()->setCanHaveScrollbars(
74 render_view->should_display_scrollbars(old_size.width, old_size.height)); 73 render_view->should_display_scrollbars(old_size.width, old_size.height));
75 view->resize(old_size); 74 view->resize(old_size);
76 75
77 UMA_HISTOGRAM_TIMES("SBClientPhishing.GrabPhishingThumbnail", 76 UMA_HISTOGRAM_TIMES("SBClientPhishing.GrabPhishingThumbnail",
78 base::TimeTicks::Now() - beginning_time); 77 base::TimeTicks::Now() - beginning_time);
79 return thumbnail; 78 return thumbnail;
80 } 79 }
81 80
82 } // namespace safe_browsing 81 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/renderer/safe_browsing/phishing_dom_feature_extractor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698