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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.h

Issue 1836973003: Move download messages from Renderer to Frame filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments, merge Created 4 years, 6 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 (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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 // RenderViewHost implementation. 92 // RenderViewHost implementation.
93 bool Send(IPC::Message* msg) override; 93 bool Send(IPC::Message* msg) override;
94 RenderWidgetHostImpl* GetWidget() const override; 94 RenderWidgetHostImpl* GetWidget() const override;
95 RenderProcessHost* GetProcess() const override; 95 RenderProcessHost* GetProcess() const override;
96 int GetRoutingID() const override; 96 int GetRoutingID() const override;
97 RenderFrameHost* GetMainFrame() override; 97 RenderFrameHost* GetMainFrame() override;
98 void AllowBindings(int binding_flags) override; 98 void AllowBindings(int binding_flags) override;
99 void ClearFocusedElement() override; 99 void ClearFocusedElement() override;
100 bool IsFocusedElementEditable() override; 100 bool IsFocusedElementEditable() override;
101 void CopyImageAt(int x, int y) override;
102 void SaveImageAt(int x, int y) override;
103 void DirectoryEnumerationFinished( 101 void DirectoryEnumerationFinished(
104 int request_id, 102 int request_id,
105 const std::vector<base::FilePath>& files) override; 103 const std::vector<base::FilePath>& files) override;
106 void DisableScrollbarsForThreshold(const gfx::Size& size) override; 104 void DisableScrollbarsForThreshold(const gfx::Size& size) override;
107 void DragSourceEndedAt(int client_x, 105 void DragSourceEndedAt(int client_x,
108 int client_y, 106 int client_y,
109 int screen_x, 107 int screen_x,
110 int screen_y, 108 int screen_y,
111 blink::WebDragOperation operation) override; 109 blink::WebDragOperation operation) override;
112 void DragSourceSystemDragEnded() override; 110 void DragSourceSystemDragEnded() override;
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 bool render_view_ready_on_process_launch_; 412 bool render_view_ready_on_process_launch_;
415 413
416 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; 414 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_;
417 415
418 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 416 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
419 }; 417 };
420 418
421 } // namespace content 419 } // namespace content
422 420
423 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 421 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_message_filter.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698