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

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

Issue 179028: Revert "Fix a ton of compiler warnings." (Closed)
Patch Set: Created 11 years, 3 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_POSSIBLE_URL_MODEL_H_ 5 #ifndef CHROME_BROWSER_POSSIBLE_URL_MODEL_H_
6 #define CHROME_BROWSER_POSSIBLE_URL_MODEL_H_ 6 #define CHROME_BROWSER_POSSIBLE_URL_MODEL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 std::wstring title; 71 std::wstring title;
72 }; 72 };
73 73
74 // The current profile. 74 // The current profile.
75 Profile* profile_; 75 Profile* profile_;
76 76
77 // Our observer. 77 // Our observer.
78 TableModelObserver* observer_; 78 TableModelObserver* observer_;
79 79
80 // Our consumer for favicon requests. 80 // Our consumer for favicon requests.
81 CancelableRequestConsumerT<size_t, 0> consumer_; 81 CancelableRequestConsumerT<size_t, NULL> consumer_;
82 82
83 // The results we're showing. 83 // The results we're showing.
84 std::vector<Result> results_; 84 std::vector<Result> results_;
85 85
86 // Map Result::index -> Favicon. 86 // Map Result::index -> Favicon.
87 typedef std::map<size_t, SkBitmap> FavIconMap; 87 typedef std::map<size_t, SkBitmap> FavIconMap;
88 FavIconMap fav_icon_map_; 88 FavIconMap fav_icon_map_;
89 89
90 DISALLOW_EVIL_CONSTRUCTORS(PossibleURLModel); 90 DISALLOW_EVIL_CONSTRUCTORS(PossibleURLModel);
91 }; 91 };
92 92
93 #endif // CHROME_BROWSER_POSSIBLE_URL_MODEL_H_ 93 #endif // CHROME_BROWSER_POSSIBLE_URL_MODEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/parsers/metadata_parser_jpeg_factory.cc ('k') | chrome/browser/renderer_host/render_view_host_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698