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

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

Issue 8784004: Update includes to new header locations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
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 "content/public/renderer/render_view.h" 10 #include "content/public/renderer/render_view.h"
11 #include "skia/ext/image_operations.h" 11 #include "skia/ext/image_operations.h"
12 #include "skia/ext/platform_canvas.h" 12 #include "skia/ext/platform_canvas.h"
13 #include "third_party/skia/include/core/SkBitmap.h" 13 #include "third_party/skia/include/core/SkBitmap.h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSize.h" 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
18 #include "ui/gfx/size.h" 18 #include "ui/gfx/size.h"
19 #include "webkit/glue/webkit_glue.h" 19 #include "webkit/glue/webkit_glue.h"
20 20
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
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 view->mainFrame()->setCanHaveScrollbars( 71 view->mainFrame()->setCanHaveScrollbars(
72 render_view->ShouldDisplayScrollbars(old_size.width, old_size.height)); 72 render_view->ShouldDisplayScrollbars(old_size.width, old_size.height));
73 view->resize(old_size); 73 view->resize(old_size);
74 74
75 UMA_HISTOGRAM_TIMES("SBClientPhishing.GrabPhishingThumbnail", 75 UMA_HISTOGRAM_TIMES("SBClientPhishing.GrabPhishingThumbnail",
76 base::TimeTicks::Now() - beginning_time); 76 base::TimeTicks::Now() - beginning_time);
77 return thumbnail; 77 return thumbnail;
78 } 78 }
79 79
80 } // namespace safe_browsing 80 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698