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

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: 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 (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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 bool render_view_ready_on_process_launch_; 407 bool render_view_ready_on_process_launch_;
410 408
411 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_; 409 base::WeakPtrFactory<RenderViewHostImpl> weak_factory_;
412 410
413 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 411 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
414 }; 412 };
415 413
416 } // namespace content 414 } // namespace content
417 415
418 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 416 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698