Home | History | Annotate | Download | only in history
      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/history/history_notifications.h"
      6 
      7 namespace history {
      8 
      9 URLVisitedDetails::URLVisitedDetails()
     10     : transition(content::PAGE_TRANSITION_LINK) {}
     11 
     12 URLVisitedDetails::~URLVisitedDetails() {}
     13 
     14 URLsModifiedDetails::URLsModifiedDetails() {}
     15 
     16 URLsModifiedDetails::~URLsModifiedDetails() {}
     17 
     18 URLsDeletedDetails::URLsDeletedDetails()
     19     : all_history(false),
     20       archived(false) {
     21 }
     22 
     23 URLsDeletedDetails::~URLsDeletedDetails() {}
     24 
     25 KeywordSearchUpdatedDetails::KeywordSearchUpdatedDetails(
     26     const GURL& url,
     27     TemplateURLID keyword_id,
     28     const base::string16& term)
     29     : url(url),
     30       keyword_id(keyword_id),
     31       term(term) {
     32 }
     33 
     34 KeywordSearchUpdatedDetails::~KeywordSearchUpdatedDetails() {}
     35 
     36 KeywordSearchDeletedDetails::KeywordSearchDeletedDetails(const GURL& url)
     37     : url(url) {
     38 }
     39 
     40 KeywordSearchDeletedDetails::~KeywordSearchDeletedDetails() {}
     41 
     42 }  // namespace history
     43