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

Side by Side Diff: chrome/browser/aeropeek_manager.cc

Issue 3010052: FBTF: Remove unneeded headers from base/ (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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/browser/aeropeek_manager.h ('k') | chrome/browser/browser_child_process_host.cc » ('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 (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/browser/aeropeek_manager.h" 5 #include "chrome/browser/aeropeek_manager.h"
6 6
7 #include <dwmapi.h> 7 #include <dwmapi.h>
8 #include <shobjidl.h> 8 #include <shobjidl.h>
9 9
10 #include "app/win_util.h" 10 #include "app/win_util.h"
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/scoped_comptr_win.h" 12 #include "base/scoped_comptr_win.h"
13 #include "base/scoped_handle_win.h" 13 #include "base/scoped_handle_win.h"
14 #include "base/scoped_native_library.h" 14 #include "base/scoped_native_library.h"
15 #include "base/waitable_event.h"
15 #include "base/win_util.h" 16 #include "base/win_util.h"
16 #include "chrome/browser/app_icon_win.h" 17 #include "chrome/browser/app_icon_win.h"
17 #include "chrome/browser/browser_list.h" 18 #include "chrome/browser/browser_list.h"
18 #include "chrome/browser/browser_process.h" 19 #include "chrome/browser/browser_process.h"
19 #include "chrome/browser/chrome_thread.h" 20 #include "chrome/browser/chrome_thread.h"
20 #include "chrome/browser/renderer_host/backing_store.h" 21 #include "chrome/browser/renderer_host/backing_store.h"
21 #include "chrome/browser/renderer_host/render_view_host.h" 22 #include "chrome/browser/renderer_host/render_view_host.h"
22 #include "chrome/browser/tab_contents/tab_contents.h" 23 #include "chrome/browser/tab_contents/tab_contents.h"
23 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 24 #include "chrome/browser/tab_contents/tab_contents_delegate.h"
24 #include "chrome/browser/tab_contents/tab_contents_view.h" 25 #include "chrome/browser/tab_contents/tab_contents_view.h"
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 // This code is just copied from "thumbnail_generator.cc". 1222 // This code is just copied from "thumbnail_generator.cc".
1222 skia::PlatformCanvas canvas; 1223 skia::PlatformCanvas canvas;
1223 if (!backing_store->CopyFromBackingStore(gfx::Rect(backing_store->size()), 1224 if (!backing_store->CopyFromBackingStore(gfx::Rect(backing_store->size()),
1224 &canvas)) 1225 &canvas))
1225 return false; 1226 return false;
1226 1227
1227 const SkBitmap& bitmap = canvas.getTopPlatformDevice().accessBitmap(false); 1228 const SkBitmap& bitmap = canvas.getTopPlatformDevice().accessBitmap(false);
1228 bitmap.copyTo(preview, SkBitmap::kARGB_8888_Config); 1229 bitmap.copyTo(preview, SkBitmap::kARGB_8888_Config);
1229 return true; 1230 return true;
1230 } 1231 }
OLDNEW
« no previous file with comments | « chrome/browser/aeropeek_manager.h ('k') | chrome/browser/browser_child_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698