Index: chrome_frame/ready_mode/internal/ready_mode_state.h |
diff --git a/chrome_frame/ready_mode/internal/ready_mode_state.h b/chrome_frame/ready_mode/internal/ready_mode_state.h |
deleted file mode 100644 |
index 625cb08acbabf9489cb4bd18e43fc597dffe88fc..0000000000000000000000000000000000000000 |
--- a/chrome_frame/ready_mode/internal/ready_mode_state.h |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-// 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_ |
- |
-// 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_ |