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

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1801783003: Remove the CREATE_RF_SWAPPED_OUT flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/browser/frame_host/render_frame_host_impl.h
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
index 35195ba830e8ee03acb27607c324e071e9b4e0cf..885258c81657b8c1577eacaaade793d9b579287a 100644
--- a/content/browser/frame_host/render_frame_host_impl.h
+++ b/content/browser/frame_host/render_frame_host_impl.h
@@ -90,10 +90,8 @@ struct ResourceResponse;
// Flag arguments for RenderFrameHost creation.
enum CreateRenderFrameFlags {
- // The RFH will be initially placed on the swapped out hosts list.
- CREATE_RF_SWAPPED_OUT = 1 << 0,
// The RenderFrame is initially hidden.
- CREATE_RF_HIDDEN = 1 << 1,
+ CREATE_RF_HIDDEN = 1 << 0,
alexmos 2016/03/14 16:57:20 We added the flags enum when going from three to f
nasko 2016/03/14 17:27:39 No, we don't. However, I want the few CLs I'm push
};
class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost,

Powered by Google App Engine
This is Rietveld 408576698