OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ | 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
105 // If the opener is suppressed, then the new WebContents doesn't hold a | 105 // If the opener is suppressed, then the new WebContents doesn't hold a |
106 // reference to its opener. | 106 // reference to its opener. |
107 bool opener_suppressed; | 107 bool opener_suppressed; |
108 | 108 |
109 // Indicates whether this WebContents was created with a window.opener. | 109 // Indicates whether this WebContents was created with a window.opener. |
110 // This is used when determining whether the WebContents is allowed to be | 110 // This is used when determining whether the WebContents is allowed to be |
111 // closed via window.close(). This may be true even with a null |opener| | 111 // closed via window.close(). This may be true even with a null |opener| |
112 // (e.g., for blocked popups). | 112 // (e.g., for blocked popups). |
113 bool created_with_opener; | 113 bool created_with_opener; |
114 | 114 |
115 // The routing ids of the RenderView and of the main RenderFrame. Either | 115 // The routing ids of the RenderView, main RenderFrame, and the widget for |
116 // both must be provided, or both must be MSG_ROUTING_NONE to have the | 116 // the main RenderFrame. Either all routing IDs must be provided or all must |
117 // WebContents make the assignment. | 117 // be MSG_ROUTING_NONE to have WebContents make the assignment. |
118 int routing_id; | 118 // TODO(dcheng): what the heck does 'make the assignment' even mean?! |
Avi (use Gerrit)
2015/08/28 01:34:49
Sigh. Welcome to hell. There are two code paths he
| |
119 int main_frame_routing_id; | 119 int32 routing_id; |
120 int32 main_frame_routing_id; | |
121 int32 main_frame_widget_routing_id; | |
120 | 122 |
121 // The name of the top-level frame of the new window. It is non-empty | 123 // The name of the top-level frame of the new window. It is non-empty |
122 // when creating a named window (e.g. <a target="foo"> or | 124 // when creating a named window (e.g. <a target="foo"> or |
123 // window.open('', 'bar')). | 125 // window.open('', 'bar')). |
124 std::string main_frame_name; | 126 std::string main_frame_name; |
125 | 127 |
126 // Initial size of the new WebContent's view. Can be (0, 0) if not needed. | 128 // Initial size of the new WebContent's view. Can be (0, 0) if not needed. |
127 gfx::Size initial_size; | 129 gfx::Size initial_size; |
128 | 130 |
129 // True if the contents should be initially hidden. | 131 // True if the contents should be initially hidden. |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
689 | 691 |
690 private: | 692 private: |
691 // This interface should only be implemented inside content. | 693 // This interface should only be implemented inside content. |
692 friend class WebContentsImpl; | 694 friend class WebContentsImpl; |
693 WebContents() {} | 695 WebContents() {} |
694 }; | 696 }; |
695 | 697 |
696 } // namespace content | 698 } // namespace content |
697 | 699 |
698 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ | 700 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_H_ |
OLD | NEW |