1 // Copyright 2013 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 #ifndef CHROME_BROWSER_HISTORY_HISTORY_DETAILS_H_ 6 #define CHROME_BROWSER_HISTORY_HISTORY_DETAILS_H_ 7 8 namespace history { 9 10 // Base class for history notifications. This needs only a virtual destructor 11 // so that the history service's broadcaster can delete it when the request 12 // is complete. 13 struct HistoryDetails { 14 public: 15 virtual ~HistoryDetails() {} 16 }; 17 18 } // namespace history 19 20 #endif // CHROME_BROWSER_HISTORY_HISTORY_DETAILS_H_ 21