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

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

Issue 2727483003: Fix broken copy-paste operations on Interstitial pages. (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 int32_t render_view_route_id, 122 int32_t render_view_route_id,
123 int32_t main_frame_route_id, 123 int32_t main_frame_route_id,
124 int32_t main_frame_widget_route_id, 124 int32_t main_frame_widget_route_id,
125 const mojom::CreateNewWindowParams& params, 125 const mojom::CreateNewWindowParams& params,
126 SessionStorageNamespace* session_storage_namespace) override; 126 SessionStorageNamespace* session_storage_namespace) override;
127 void ShowCreatedWindow(int process_id, 127 void ShowCreatedWindow(int process_id,
128 int main_frame_widget_route_id, 128 int main_frame_widget_route_id,
129 WindowOpenDisposition disposition, 129 WindowOpenDisposition disposition,
130 const gfx::Rect& initial_rect, 130 const gfx::Rect& initial_rect,
131 bool user_gesture) override; 131 bool user_gesture) override;
132 void SetFocusedFrame(FrameTreeNode* node, SiteInstance* source) override;
132 133
133 // RenderViewHostDelegate implementation: 134 // RenderViewHostDelegate implementation:
134 RenderViewHostDelegateView* GetDelegateView() override; 135 RenderViewHostDelegateView* GetDelegateView() override;
135 bool OnMessageReceived(RenderViewHostImpl* render_view_host, 136 bool OnMessageReceived(RenderViewHostImpl* render_view_host,
136 const IPC::Message& message) override; 137 const IPC::Message& message) override;
137 const GURL& GetMainFrameLastCommittedURL() const override; 138 const GURL& GetMainFrameLastCommittedURL() const override;
138 void RenderViewTerminated(RenderViewHost* render_view_host, 139 void RenderViewTerminated(RenderViewHost* render_view_host,
139 base::TerminationStatus status, 140 base::TerminationStatus status,
140 int error_code) override; 141 int error_code) override;
141 RendererPreferences GetRendererPrefs( 142 RendererPreferences GetRendererPrefs(
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 scoped_refptr<SessionStorageNamespace> session_storage_namespace_; 299 scoped_refptr<SessionStorageNamespace> session_storage_namespace_;
299 300
300 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_; 301 base::WeakPtrFactory<InterstitialPageImpl> weak_ptr_factory_;
301 302
302 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl); 303 DISALLOW_COPY_AND_ASSIGN(InterstitialPageImpl);
303 }; 304 };
304 305
305 } // namespace content 306 } // namespace content
306 307
307 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_ 308 #endif // CONTENT_BROWSER_FRAME_HOST_INTERSTITIAL_PAGE_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/interstitial_page_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698