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

Side by Side Diff: chrome/browser/icon_loader.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « chrome/browser/history/web_history_service_unittest.cc ('k') | chrome/browser/icon_loader.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_ICON_LOADER_H_ 5 #ifndef CHROME_BROWSER_ICON_LOADER_H_
6 #define CHROME_BROWSER_ICON_LOADER_H_ 6 #define CHROME_BROWSER_ICON_LOADER_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h"
13 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/single_thread_task_runner.h" 16 #include "base/single_thread_task_runner.h"
17 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
18 #include "ui/gfx/image/image.h" 18 #include "ui/gfx/image/image.h"
19 19
20 #if defined(OS_WIN) 20 #if defined(OS_WIN)
21 // On Windows, we group files by their extension, with several exceptions: 21 // On Windows, we group files by their extension, with several exceptions:
22 // .dll, .exe, .ico. See IconManager.h for explanation. 22 // .dll, .exe, .ico. See IconManager.h for explanation.
23 typedef std::wstring IconGroupID; 23 typedef std::wstring IconGroupID;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 IconSize icon_size_; 97 IconSize icon_size_;
98 98
99 scoped_ptr<gfx::Image> image_; 99 scoped_ptr<gfx::Image> image_;
100 100
101 Delegate* delegate_; 101 Delegate* delegate_;
102 102
103 DISALLOW_COPY_AND_ASSIGN(IconLoader); 103 DISALLOW_COPY_AND_ASSIGN(IconLoader);
104 }; 104 };
105 105
106 #endif // CHROME_BROWSER_ICON_LOADER_H_ 106 #endif // CHROME_BROWSER_ICON_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/web_history_service_unittest.cc ('k') | chrome/browser/icon_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698