1 // Copyright (c) 2012 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.
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_
8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/strings/string16.h"
11 #include "content/common/content_export.h"
12 #include "content/common/view_message_enums.h"
20 struct RendererPreferences
;
21 struct WebPreferences
;
23 // Container for all parameters passed to RenderViewImpl's constructor.
24 struct CONTENT_EXPORT RenderViewImplParams
{
25 RenderViewImplParams(int32 opener_id
,
26 bool window_was_created_with_opener
,
27 const RendererPreferences
& renderer_prefs
,
28 const WebPreferences
& webkit_prefs
,
30 int32 main_frame_routing_id
,
32 int64 session_storage_namespace_id
,
33 const base::string16
& frame_name
,
34 bool is_renderer_created
,
36 int32 proxy_routing_id
,
40 const blink::WebScreenInfo
& screen_info
);
41 ~RenderViewImplParams();
44 bool window_was_created_with_opener
;
45 const RendererPreferences
& renderer_prefs
;
46 const WebPreferences
& webkit_prefs
;
48 int32 main_frame_routing_id
;
50 int64 session_storage_namespace_id
;
51 const base::string16
& frame_name
;
52 bool is_renderer_created
;
54 int32 proxy_routing_id
;
58 const blink::WebScreenInfo
& screen_info
;
61 } // namespace content
63 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_PARAMS_H_