blob: c65231f495abc38f8b866282c243412b84cd740e [file] [log] [blame]
[email protected]33a83db2011-07-27 20:15:061// Copyright (c) 2011 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_PAGE_INFO_MODEL_OBSERVER_H_
6#define CHROME_BROWSER_PAGE_INFO_MODEL_OBSERVER_H_
7#pragma once
8
9// This interface should be implemented by classes interested in getting
10// notifications from PageInfoModel.
11class PageInfoModelObserver {
12 public:
13 virtual ~PageInfoModelObserver() {}
14
15 virtual void OnPageInfoModelChanged() = 0;
16};
17
18#endif // CHROME_BROWSER_PAGE_INFO_MODEL_OBSERVER_H_