| Index: include/AdblockPlus/Notification.h | 
| diff --git a/include/AdblockPlus/Notification.h b/include/AdblockPlus/Notification.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..e6f4553381379c341dac2ef6de1867b1c8e5c5f7 | 
| --- /dev/null | 
| +++ b/include/AdblockPlus/Notification.h | 
| @@ -0,0 +1,59 @@ | 
| +/* | 
| + * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| + * Copyright (C) 2006-2015 Eyeo GmbH | 
| + * | 
| + * Adblock Plus is free software: you can redistribute it and/or modify | 
| + * it under the terms of the GNU General Public License version 3 as | 
| + * published by the Free Software Foundation. | 
| + * | 
| + * Adblock Plus is distributed in the hope that it will be useful, | 
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
| + * GNU General Public License for more details. | 
| + * | 
| + * You should have received a copy of the GNU General Public License | 
| + * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
| + */ | 
| + | 
| +#ifndef ADBLOCK_PLUS_NOTIFICATION_H | 
| +#define ADBLOCK_PLUS_NOTIFICATION_H | 
| + | 
| +#include <string> | 
| +#include <vector> | 
| +#include <memory> | 
| + | 
| +namespace AdblockPlus | 
| +{ | 
| +  class FilterEngine; | 
| +  enum NotificationType | 
| +  { | 
| +    NOTIFICATION_TYPE_INFORMATION, | 
| +    NOTIFICATION_TYPE_QUESTION, | 
| +    NOTIFICATION_TYPE_CRITICAL | 
| +  }; | 
| + | 
| +  class Notification: public JsValue | 
| +  { | 
| +    friend class FilterEngine; | 
| +  protected: | 
| +    struct PrivateCtrArg{}; | 
| +    static std::tr1::shared_ptr<Notification> JsValueToNotification(const JsValuePtr& jsValue); | 
| +  public: | 
| +    explicit Notification(const JsValuePtr& jsValue, PrivateCtrArg); | 
| +    NotificationType GetType() const; | 
| +    /** | 
| +     * Localizes the texts of the supplied notification. | 
| +     * @return the translated texts. | 
| +     */ | 
| +    const std::string& GetTitle() const; | 
| +    const std::string& GetMessageString() const; | 
| +    void MarkAsShown(); | 
| +  private: | 
| +    std::string title; | 
| +    std::string message; | 
| +    NotificationType type; | 
| +  }; | 
| +  typedef std::tr1::shared_ptr<Notification> NotificationPtr; | 
| +} | 
| + | 
| +#endif | 
|  |