• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
SuggestedLink(const std::string & link_url,const std::string & link_text,const std::string & url_image,double score)9 SuggestedLink::SuggestedLink(const std::string& link_url,
10                              const std::string& link_text,
11                              const std::string& url_image,
12                              double score)
13     : link_url_(link_url),
14       link_text_(link_text),
15       url_image_(url_image),
16       score_(score) {}
17 
~SuggestedLink()18 SuggestedLink::~SuggestedLink() {}
19 
20 }  // namespace extensions
21