Home | History | Annotate | Download | only in browser
      1 // Copyright 2014 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 "components/history/core/browser/keyword_search_term.h"
      6 
      7 namespace history {
      8 
      9 KeywordSearchTermVisit::KeywordSearchTermVisit() : visits(0) {}
     10 
     11 KeywordSearchTermVisit::~KeywordSearchTermVisit() {}
     12 
     13 
     14 KeywordSearchTermRow::KeywordSearchTermRow() : keyword_id(0), url_id(0) {}
     15 
     16 KeywordSearchTermRow::~KeywordSearchTermRow() {}
     17 
     18 }  // namespace history
     19