OLD | NEW |
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 #import "chrome/browser/cocoa/location_bar_view_mac.h" | 5 #import "chrome/browser/cocoa/location_bar_view_mac.h" |
6 | 6 |
7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
8 #include "chrome/app/chrome_dll_resource.h" | 8 #include "chrome/app/chrome_dll_resource.h" |
9 #include "chrome/browser/alternate_nav_url_fetcher.h" | 9 #include "chrome/browser/alternate_nav_url_fetcher.h" |
10 #import "chrome/browser/app_controller_mac.h" | 10 #import "chrome/browser/app_controller_mac.h" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 101 |
102 SkBitmap LocationBarViewMac::GetFavIcon() const { | 102 SkBitmap LocationBarViewMac::GetFavIcon() const { |
103 NOTIMPLEMENTED(); | 103 NOTIMPLEMENTED(); |
104 return SkBitmap(); | 104 return SkBitmap(); |
105 } | 105 } |
106 | 106 |
107 std::wstring LocationBarViewMac::GetTitle() const { | 107 std::wstring LocationBarViewMac::GetTitle() const { |
108 NOTIMPLEMENTED(); | 108 NOTIMPLEMENTED(); |
109 return std::wstring(); | 109 return std::wstring(); |
110 } | 110 } |
| 111 |
| 112 void LocationBarViewMac::Revert() { |
| 113 NOTIMPLEMENTED(); |
| 114 } |
OLD | NEW |