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

Side by Side Diff: chrome_frame/ready_mode/internal/ready_mode_state.h

Issue 5747002: Implement a ReadyPromptContent that displays a prompt to accept, temporarily ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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
grt (UTC plus 2) 2010/12/11 03:12:06 #pragma once
erikwright (departed) 2010/12/14 16:15:17 Done.
8 // Allows the UI element to signal the user's response to a Ready Mode prompt.
9 class ReadyModeState {
10 public:
11 virtual ~ReadyModeState() {}
12
13 // Indicates that the user has temporarily declined the product.
14 virtual void TemporarilyDeclineChromeFrame() = 0;
15
16 // Indicates that the user has permanently declined the product.
17 virtual void PermanentlyDeclineChromeFrame() = 0;
18
19 // Indicates that the user has accepted the product.
20 virtual void AcceptChromeFrame() = 0;
21 }; // class ReadyModeState
22
23 #endif // CHROME_FRAME_READY_MODE_INTERNAL_READY_MODE_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698