Home | History | Annotate | Download | only in history
      1 // Copyright (c) 2010 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() : transition(PageTransition::LINK) {}
     10 
     11 URLVisitedDetails::~URLVisitedDetails() {}
     12 
     13 URLsModifiedDetails::URLsModifiedDetails() {}
     14 
     15 URLsModifiedDetails::~URLsModifiedDetails() {}
     16 
     17 URLsDeletedDetails::URLsDeletedDetails() : all_history(false) {}
     18 
     19 URLsDeletedDetails::~URLsDeletedDetails() {}
     20 
     21 URLsStarredDetails::URLsStarredDetails(bool being_starred)
     22     : starred(being_starred) {
     23 }
     24 
     25 URLsStarredDetails::~URLsStarredDetails() {}
     26 
     27 FaviconChangeDetails::FaviconChangeDetails() {}
     28 
     29 FaviconChangeDetails::~FaviconChangeDetails() {}
     30 
     31 KeywordSearchTermDetails::KeywordSearchTermDetails() : keyword_id(0) {}
     32 
     33 KeywordSearchTermDetails::~KeywordSearchTermDetails() {}
     34 
     35 }  // namespace history
     36