Index: chrome_frame/ready_mode/internal/ready_mode_state.h |
=================================================================== |
--- chrome_frame/ready_mode/internal/ready_mode_state.h (revision 0) |
+++ chrome_frame/ready_mode/internal/ready_mode_state.h (revision 0) |
@@ -0,0 +1,23 @@ |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
+#define CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
+ |
grt (UTC plus 2)
2010/12/11 03:12:06
#pragma once
erikwright (departed)
2010/12/14 16:15:17
Done.
|
+// Allows the UI element to signal the user's response to a Ready Mode prompt. |
+class ReadyModeState { |
+ public: |
+ virtual ~ReadyModeState() {} |
+ |
+ // Indicates that the user has temporarily declined the product. |
+ virtual void TemporarilyDeclineChromeFrame() = 0; |
+ |
+ // Indicates that the user has permanently declined the product. |
+ virtual void PermanentlyDeclineChromeFrame() = 0; |
+ |
+ // Indicates that the user has accepted the product. |
+ virtual void AcceptChromeFrame() = 0; |
+}; // class ReadyModeState |
+ |
+#endif // CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_ |
Property changes on: chrome_frame\ready_mode\internal\ready_mode_state.h |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |