OLD | NEW |
(Empty) | |
| 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 #ifndef CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
| 6 #define CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
| 7 #pragma once |
| 8 |
| 9 // Allows the UI element to signal the user's response to a Ready Mode prompt. |
| 10 class ReadyModeState { |
| 11 public: |
| 12 virtual ~ReadyModeState() {} |
| 13 |
| 14 // Indicates that the user has temporarily declined the product. |
| 15 virtual void TemporarilyDeclineChromeFrame() = 0; |
| 16 |
| 17 // Indicates that the user has permanently declined the product. |
| 18 virtual void PermanentlyDeclineChromeFrame() = 0; |
| 19 |
| 20 // Indicates that the user has accepted the product. |
| 21 virtual void AcceptChromeFrame() = 0; |
| 22 }; // class ReadyModeState |
| 23 |
| 24 #endif // CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
OLD | NEW |