Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome_frame/ready_mode/internal/ready_mode_state.h

Issue 110163004: Remove Chrome Frame ready-mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fixes for mini_installer_test Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698