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

Side by Side Diff: chrome/browser/ui/cocoa/tab_contents/favicon_util_mac.h

Issue 11305008: Remove TabContents from TabStripModelObserverBridge. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month 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
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_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_
6 #define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_ 6 #define CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_
7 7
8 @class NSImage; 8 @class NSImage;
9 class TabContents; 9
10 namespace content {
11 class WebContents;
12 }
10 13
11 namespace mac { 14 namespace mac {
12 15
13 // Returns an autoreleased favicon for a given TabContents. If |contents| 16 // Returns an autoreleased favicon for a given WebContents. If |contents|
14 // is NULL or there's no favicon for the NavigationEntry, this will return the 17 // is NULL or there's no favicon for the NavigationEntry, this will return the
15 // default image. 18 // default image.
16 NSImage* FaviconForTabContents(TabContents* contents); 19 NSImage* FaviconForWebContents(content::WebContents* contents);
17 20
18 } // namespace mac 21 } // namespace mac
19 22
20 #endif // CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_ 23 #endif // CHROME_BROWSER_UI_COCOA_TAB_CONTENTS_FAVICON_UTIL_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698