| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/extensions/api/discovery/suggested_link.h" |
| 6 |
| 7 namespace extensions { |
| 8 |
| 9 SuggestedLink::SuggestedLink(const std::string& link_url, |
| 10 const std::string& link_text, |
| 11 double score) |
| 12 : link_url_(link_url), |
| 13 link_text_(link_text), |
| 14 score_(score) {} |
| 15 |
| 16 SuggestedLink::~SuggestedLink() {} |
| 17 |
| 18 } // namespace extensions |
| OLD | NEW |