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

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

Issue 1749383002: Eliminate uncalled will___LiveResize and inLiveResize from RenderViewImpl through WebWidget down to… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 #if defined(OS_ANDROID) 679 #if defined(OS_ANDROID)
680 void OnUndoScrollFocusedEditableNodeIntoRect(); 680 void OnUndoScrollFocusedEditableNodeIntoRect();
681 void OnUpdateTopControlsState(bool enable_hiding, 681 void OnUpdateTopControlsState(bool enable_hiding,
682 bool enable_showing, 682 bool enable_showing,
683 bool animate); 683 bool animate);
684 void OnExtractSmartClipData(const gfx::Rect& rect); 684 void OnExtractSmartClipData(const gfx::Rect& rect);
685 #elif defined(OS_MACOSX) 685 #elif defined(OS_MACOSX)
686 void OnGetRenderedText(); 686 void OnGetRenderedText();
687 void OnPluginImeCompositionCompleted(const base::string16& text, 687 void OnPluginImeCompositionCompleted(const base::string16& text,
688 int plugin_id); 688 int plugin_id);
689 void OnSetInLiveResize(bool in_live_resize);
690 void OnSetWindowVisibility(bool visible); 689 void OnSetWindowVisibility(bool visible);
691 void OnWindowFrameChanged(const gfx::Rect& window_frame, 690 void OnWindowFrameChanged(const gfx::Rect& window_frame,
692 const gfx::Rect& view_frame); 691 const gfx::Rect& view_frame);
693 #endif 692 #endif
694 693
695 // Adding a new message handler? Please add it in alphabetical order above 694 // Adding a new message handler? Please add it in alphabetical order above
696 // and put it in the same position in the .cc file. 695 // and put it in the same position in the .cc file.
697 696
698 // Misc private functions ---------------------------------------------------- 697 // Misc private functions ----------------------------------------------------
699 // Check whether the preferred size has changed. 698 // Check whether the preferred size has changed.
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1016 // use the Observer interface to filter IPC messages and receive frame change 1015 // use the Observer interface to filter IPC messages and receive frame change
1017 // notifications. 1016 // notifications.
1018 // --------------------------------------------------------------------------- 1017 // ---------------------------------------------------------------------------
1019 1018
1020 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1019 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1021 }; 1020 };
1022 1021
1023 } // namespace content 1022 } // namespace content
1024 1023
1025 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1024 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698