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

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

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/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/browser/instant/instant_loader.cc ('k') | chrome/browser/modal_html_dialog_delegate.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/jumplist_win.h" 5 #include "chrome/browser/jumplist_win.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <shobjidl.h> 8 #include <shobjidl.h>
9 #include <propkey.h> 9 #include <propkey.h>
10 #include <propvarutil.h> 10 #include <propvarutil.h>
(...skipping 14 matching lines...) Expand all
25 #include "chrome/browser/favicon_service.h" 25 #include "chrome/browser/favicon_service.h"
26 #include "chrome/browser/history/history.h" 26 #include "chrome/browser/history/history.h"
27 #include "chrome/browser/history/page_usage_data.h" 27 #include "chrome/browser/history/page_usage_data.h"
28 #include "chrome/browser/profiles/profile.h" 28 #include "chrome/browser/profiles/profile.h"
29 #include "chrome/browser/sessions/session_types.h" 29 #include "chrome/browser/sessions/session_types.h"
30 #include "chrome/browser/sessions/tab_restore_service.h" 30 #include "chrome/browser/sessions/tab_restore_service.h"
31 #include "chrome/browser/shell_integration.h" 31 #include "chrome/browser/shell_integration.h"
32 #include "chrome/common/chrome_constants.h" 32 #include "chrome/common/chrome_constants.h"
33 #include "chrome/common/chrome_switches.h" 33 #include "chrome/common/chrome_switches.h"
34 #include "chrome/common/url_constants.h" 34 #include "chrome/common/url_constants.h"
35 #include "gfx/codec/png_codec.h"
36 #include "gfx/icon_util.h"
37 #include "googleurl/src/gurl.h" 35 #include "googleurl/src/gurl.h"
38 #include "grit/chromium_strings.h" 36 #include "grit/chromium_strings.h"
39 #include "grit/generated_resources.h" 37 #include "grit/generated_resources.h"
40 #include "third_party/skia/include/core/SkBitmap.h" 38 #include "third_party/skia/include/core/SkBitmap.h"
41 #include "ui/base/l10n/l10n_util.h" 39 #include "ui/base/l10n/l10n_util.h"
40 #include "ui/gfx/codec/png_codec.h"
41 #include "ui/gfx/icon_util.h"
42 42
43 43
44 namespace { 44 namespace {
45 45
46 // COM interfaces used in this file. 46 // COM interfaces used in this file.
47 // These interface declarations are copied from Windows SDK 7.0. 47 // These interface declarations are copied from Windows SDK 7.0.
48 // TODO(hbono): Bug 16903: to be deleted them when we use Windows SDK 7.0. 48 // TODO(hbono): Bug 16903: to be deleted them when we use Windows SDK 7.0.
49 #ifndef __IObjectArray_INTERFACE_DEFINED__ 49 #ifndef __IObjectArray_INTERFACE_DEFINED__
50 #define __IObjectArray_INTERFACE_DEFINED__ 50 #define __IObjectArray_INTERFACE_DEFINED__
51 51
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 // the file thread. 775 // the file thread.
776 BrowserThread::PostTask( 776 BrowserThread::PostTask(
777 BrowserThread::FILE, FROM_HERE, 777 BrowserThread::FILE, FROM_HERE,
778 new JumpListUpdateTask(app_id_.c_str(), icon_dir_, most_visited_pages_, 778 new JumpListUpdateTask(app_id_.c_str(), icon_dir_, most_visited_pages_,
779 recently_closed_pages_)); 779 recently_closed_pages_));
780 780
781 // Delete all items in these lists since we don't need these lists any longer. 781 // Delete all items in these lists since we don't need these lists any longer.
782 most_visited_pages_.clear(); 782 most_visited_pages_.clear();
783 recently_closed_pages_.clear(); 783 recently_closed_pages_.clear();
784 } 784 }
OLDNEW
« no previous file with comments | « chrome/browser/instant/instant_loader.cc ('k') | chrome/browser/modal_html_dialog_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698