Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #import "ios/web/public/test/url_test_util.h" | |
|
Eugene But (OOO till 7-30)
2017/03/01 22:45:44
s/import/include
Same comment for other includes
kkhorimoto
2017/03/01 23:23:47
Done.
| |
| 6 | |
| 7 #import "ios/web/navigation/navigation_item_impl.h" | |
| 8 | |
| 9 namespace web { | |
| 10 | |
| 11 base::string16 GetDisplayTitleForUrl(const GURL& url) { | |
| 12 return NavigationItemImpl::GetDisplayTitleForURL(url); | |
| 13 } | |
| 14 | |
| 15 } // namespace web | |
| OLD | NEW |