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

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
« no previous file with comments | « content/common/view_messages.h ('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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 #if defined(OS_ANDROID) 683 #if defined(OS_ANDROID)
684 void OnUndoScrollFocusedEditableNodeIntoRect(); 684 void OnUndoScrollFocusedEditableNodeIntoRect();
685 void OnUpdateTopControlsState(bool enable_hiding, 685 void OnUpdateTopControlsState(bool enable_hiding,
686 bool enable_showing, 686 bool enable_showing,
687 bool animate); 687 bool animate);
688 void OnExtractSmartClipData(const gfx::Rect& rect); 688 void OnExtractSmartClipData(const gfx::Rect& rect);
689 #elif defined(OS_MACOSX) 689 #elif defined(OS_MACOSX)
690 void OnGetRenderedText(); 690 void OnGetRenderedText();
691 void OnPluginImeCompositionCompleted(const base::string16& text, 691 void OnPluginImeCompositionCompleted(const base::string16& text,
692 int plugin_id); 692 int plugin_id);
693 void OnSetInLiveResize(bool in_live_resize);
694 void OnSetWindowVisibility(bool visible); 693 void OnSetWindowVisibility(bool visible);
695 void OnWindowFrameChanged(const gfx::Rect& window_frame, 694 void OnWindowFrameChanged(const gfx::Rect& window_frame,
696 const gfx::Rect& view_frame); 695 const gfx::Rect& view_frame);
697 #endif 696 #endif
698 697
699 // Page message handlers ----------------------------------------------------- 698 // Page message handlers -----------------------------------------------------
700 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect); 699 void OnUpdateWindowScreenRect(gfx::Rect window_screen_rect);
701 700
702 // Adding a new message handler? Please add it in alphabetical order above 701 // Adding a new message handler? Please add it in alphabetical order above
703 // and put it in the same position in the .cc file. 702 // and put it in the same position in the .cc file.
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 // use the Observer interface to filter IPC messages and receive frame change 1022 // use the Observer interface to filter IPC messages and receive frame change
1024 // notifications. 1023 // notifications.
1025 // --------------------------------------------------------------------------- 1024 // ---------------------------------------------------------------------------
1026 1025
1027 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1026 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1028 }; 1027 };
1029 1028
1030 } // namespace content 1029 } // namespace content
1031 1030
1032 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1031 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/view_messages.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698