| OLD | NEW |
| 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 #include "chrome/browser/favicon/favicon_utils.h" | 5 #include "chrome/browser/favicon/favicon_utils.h" |
| 6 | 6 |
| 7 #include "chrome/browser/bookmarks/bookmark_model_factory.h" | 7 #include "chrome/browser/bookmarks/bookmark_model_factory.h" |
| 8 #include "chrome/browser/favicon/favicon_service_factory.h" | 8 #include "chrome/browser/favicon/favicon_service_factory.h" |
| 9 #include "chrome/browser/history/history_service_factory.h" | 9 #include "chrome/browser/history/history_service_factory.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 if (controller.GetLastCommittedEntry() && controller.GetPendingEntry()) | 38 if (controller.GetLastCommittedEntry() && controller.GetPendingEntry()) |
| 39 return true; | 39 return true; |
| 40 | 40 |
| 41 GURL url = web_contents->GetURL(); | 41 GURL url = web_contents->GetURL(); |
| 42 if (url.SchemeIs(content::kChromeUIScheme) && | 42 if (url.SchemeIs(content::kChromeUIScheme) && |
| 43 url.host() == chrome::kChromeUINewTabHost) { | 43 url.host() == chrome::kChromeUINewTabHost) { |
| 44 return false; | 44 return false; |
| 45 } | 45 } |
| 46 | 46 |
| 47 // No favicon on Instant New Tab Pages. | 47 // No favicon on Instant New Tab Pages. |
| 48 if (chrome::IsInstantNTP(web_contents)) | 48 if (search::IsInstantNTP(web_contents)) |
| 49 return false; | 49 return false; |
| 50 | 50 |
| 51 return true; | 51 return true; |
| 52 } | 52 } |
| 53 | 53 |
| 54 } // namespace favicon | 54 } // namespace favicon |
| OLD | NEW |