Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: chrome/browser/extensions/api/discovery/suggested_link.cc

Issue 10391034: Scaffolding for an experimental discovery API letting users inject links in the recommended pane of… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Answered review comments from PatchSet 4. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698