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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 1832803002: Make EnableViewSourceMode a FrameMsg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 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 | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_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 (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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); 667 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
668 void OnSetWebUIProperty(const std::string& name, const std::string& value); 668 void OnSetWebUIProperty(const std::string& name, const std::string& value);
669 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); 669 void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
670 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); 670 void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level);
671 void OnSuppressDialogsUntilSwapOut(); 671 void OnSuppressDialogsUntilSwapOut();
672 void OnThemeChanged(); 672 void OnThemeChanged();
673 void OnUpdateTargetURLAck(); 673 void OnUpdateTargetURLAck();
674 void OnUpdateWebPreferences(const WebPreferences& prefs); 674 void OnUpdateWebPreferences(const WebPreferences& prefs);
675 void OnSetPageScale(float page_scale_factor); 675 void OnSetPageScale(float page_scale_factor);
676 void OnZoom(PageZoom zoom); 676 void OnZoom(PageZoom zoom);
677 void OnEnableViewSourceMode();
678 void OnForceRedraw(int request_id); 677 void OnForceRedraw(int request_id);
679 void OnSelectWordAroundCaret(); 678 void OnSelectWordAroundCaret();
680 #if defined(OS_ANDROID) 679 #if defined(OS_ANDROID)
681 void OnUndoScrollFocusedEditableNodeIntoRect(); 680 void OnUndoScrollFocusedEditableNodeIntoRect();
682 void OnUpdateTopControlsState(bool enable_hiding, 681 void OnUpdateTopControlsState(bool enable_hiding,
683 bool enable_showing, 682 bool enable_showing,
684 bool animate); 683 bool animate);
685 void OnExtractSmartClipData(const gfx::Rect& rect); 684 void OnExtractSmartClipData(const gfx::Rect& rect);
686 #elif defined(OS_MACOSX) 685 #elif defined(OS_MACOSX)
687 void OnGetRenderedText(); 686 void OnGetRenderedText();
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1008 // use the Observer interface to filter IPC messages and receive frame change 1007 // use the Observer interface to filter IPC messages and receive frame change
1009 // notifications. 1008 // notifications.
1010 // --------------------------------------------------------------------------- 1009 // ---------------------------------------------------------------------------
1011 1010
1012 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1011 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1013 }; 1012 };
1014 1013
1015 } // namespace content 1014 } // namespace content
1016 1015
1017 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1016 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698