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

Side by Side Diff: content/browser/frame_host/interstitial_page_impl.h

Issue 1986643002: Track pending WebContents and widgets by (process_id, routing_id) pair. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fullscreen-flash
Patch Set: Disable popup menu test for Mac/Android Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 int32_t route_id, 133 int32_t route_id,
134 int32_t main_frame_route_id, 134 int32_t main_frame_route_id,
135 int32_t main_frame_widget_route_id, 135 int32_t main_frame_widget_route_id,
136 const ViewHostMsg_CreateWindow_Params& params, 136 const ViewHostMsg_CreateWindow_Params& params,
137 SessionStorageNamespace* session_storage_namespace) override; 137 SessionStorageNamespace* session_storage_namespace) override;
138 void CreateNewWidget(int32_t render_process_id, 138 void CreateNewWidget(int32_t render_process_id,
139 int32_t route_id, 139 int32_t route_id,
140 blink::WebPopupType popup_type) override; 140 blink::WebPopupType popup_type) override;
141 void CreateNewFullscreenWidget(int32_t render_process_id, 141 void CreateNewFullscreenWidget(int32_t render_process_id,
142 int32_t route_id) override; 142 int32_t route_id) override;
143 void ShowCreatedWindow(int route_id, 143 void ShowCreatedWindow(int process_id,
144 int route_id,
144 WindowOpenDisposition disposition, 145 WindowOpenDisposition disposition,
145 const gfx::Rect& initial_rect, 146 const gfx::Rect& initial_rect,
146 bool user_gesture) override; 147 bool user_gesture) override;
147 void ShowCreatedWidget(int route_id, const gfx::Rect& initial_rect) override; 148 void ShowCreatedWidget(int process_id,
148 void ShowCreatedFullscreenWidget(int route_id) override; 149 int route_id,
150 const gfx::Rect& initial_rect) override;
151 void ShowCreatedFullscreenWidget(int process_id, int route_id) override;
149 152
150 SessionStorageNamespace* GetSessionStorageNamespace( 153 SessionStorageNamespace* GetSessionStorageNamespace(
151 SiteInstance* instance) override; 154 SiteInstance* instance) override;
152 155
153 FrameTree* GetFrameTree() override; 156 FrameTree* GetFrameTree() override;
154 157
155 // RenderWidgetHostDelegate implementation: 158 // RenderWidgetHostDelegate implementation:
156 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override; 159 void RenderWidgetDeleted(RenderWidgetHostImpl* render_widget_host) override;
157 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 160 bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
158 bool* is_keyboard_shortcut) override; 161 bool* is_keyboard_shortcut) override;
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; 300 scoped_refptr<SessionStorageNamespace> session_storage_namespace_;
298 301
299 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; 302 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_;
300 303
301 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); 304 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl);
302 }; 305 };
303 306
304 } // namespace content 307 } // namespace content
305 308
306 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 309 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698