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

Unified Diff: chrome/browser/history/history_types.h

Issue 330603004: Rename FaviconBitmapXxx to FaviconRawBitmapXxx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/history_types.h
diff --git a/chrome/browser/history/history_types.h b/chrome/browser/history/history_types.h
index 2a392bcfb12374b947ad892ccd8829e640870e25..9a51f6b0774b4134d7f5e1c646cd4b47cb1e6aa5 100644
--- a/chrome/browser/history/history_types.h
+++ b/chrome/browser/history/history_types.h
@@ -42,7 +42,7 @@ typedef std::map<GURL, scoped_refptr<RefCountedVector<GURL> > > RedirectMap;
// Container for a list of URLs.
typedef std::vector<GURL> RedirectList;
-typedef int64 FaviconBitmapID; // Identifier for a bitmap in a favicon.
+typedef int64 FaviconRawBitmapID; // Identifier for a bitmap in a favicon.
typedef int64 SegmentID; // URL segments for the most visited view.
typedef int64 IconMappingID; // For page url and icon mapping.
@@ -698,24 +698,24 @@ struct IconMapping {
};
// Defines a favicon bitmap and its associated pixel size.
-struct FaviconBitmapIDSize {
- FaviconBitmapIDSize();
- ~FaviconBitmapIDSize();
+struct FaviconRawBitmapIDSize {
+ FaviconRawBitmapIDSize();
+ ~FaviconRawBitmapIDSize();
// The unique id of the favicon bitmap.
- FaviconBitmapID bitmap_id;
+ FaviconRawBitmapID bitmap_id;
// The pixel dimensions of the associated bitmap.
gfx::Size pixel_size;
};
// Defines a favicon bitmap stored in the history backend.
-struct FaviconBitmap {
- FaviconBitmap();
- ~FaviconBitmap();
+struct FaviconRawBitmap {
+ FaviconRawBitmap();
+ ~FaviconRawBitmap();
// The unique id of the bitmap.
- FaviconBitmapID bitmap_id;
+ FaviconRawBitmapID bitmap_id;
// The id of the favicon to which the bitmap belongs to.
favicon_base::FaviconID icon_id;

Powered by Google App Engine
This is Rietveld 408576698