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

Unified Diff: content/plugin/plugin_channel.h

Issue 7230052: Make kClearSiteDataOnExit work correctly for Flash in multi-profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 6 months 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: content/plugin/plugin_channel.h
===================================================================
--- content/plugin/plugin_channel.h (revision 90755)
+++ content/plugin/plugin_channel.h (working copy)
@@ -50,6 +50,9 @@
bool incognito() { return incognito_; }
void set_incognito(bool value) { incognito_ = value; }
+ bool save_local_state() { return save_local_state_; }
+ void set_save_local_state(bool value) { save_local_state_ = value; }
+
#if defined(OS_POSIX)
int renderer_fd() const { return channel_->GetClientFileDescriptor(); }
#endif
@@ -93,6 +96,7 @@
int in_send_; // Tracks if we're in a Send call.
bool log_messages_; // True if we should log sent and received messages.
bool incognito_; // True if the renderer is in incognito mode.
+ bool save_local_state_; // True if the renderer should save local state.
scoped_refptr<MessageFilter> filter_; // Handles the modal dialog events.
DISALLOW_COPY_AND_ASSIGN(PluginChannel);

Powered by Google App Engine
This is Rietveld 408576698