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

Side by Side Diff: chrome/renderer/render_view.h

Issue 2145002: Mac: Fix renderer idle cpu usage regression. (Closed)
Patch Set: rebase Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_
6 #define CHROME_RENDERER_RENDER_VIEW_H_ 6 #define CHROME_RENDERER_RENDER_VIEW_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 void OnReservePageIDRange(int size_of_range); 715 void OnReservePageIDRange(int size_of_range);
716 716
717 void OnDragSourceEndedOrMoved(const gfx::Point& client_point, 717 void OnDragSourceEndedOrMoved(const gfx::Point& client_point,
718 const gfx::Point& screen_point, 718 const gfx::Point& screen_point,
719 bool ended, 719 bool ended,
720 WebKit::WebDragOperation drag_operation); 720 WebKit::WebDragOperation drag_operation);
721 void OnDragSourceSystemDragEnded(); 721 void OnDragSourceSystemDragEnded();
722 void OnInstallMissingPlugin(); 722 void OnInstallMissingPlugin();
723 void OnFileChooserResponse(const std::vector<FilePath>& paths); 723 void OnFileChooserResponse(const std::vector<FilePath>& paths);
724 void OnEnableViewSourceMode(); 724 void OnEnableViewSourceMode();
725 void OnEnablePreferredSizeChangedMode(); 725 void OnEnablePreferredSizeChangedMode(int flags);
726 void OnDisableScrollbarsForSmallWindows( 726 void OnDisableScrollbarsForSmallWindows(
727 const gfx::Size& disable_scrollbars_size_limit); 727 const gfx::Size& disable_scrollbars_size_limit);
728 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); 728 void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
729 void OnMediaPlayerActionAt(const gfx::Point& location, 729 void OnMediaPlayerActionAt(const gfx::Point& location,
730 const WebKit::WebMediaPlayerAction& action); 730 const WebKit::WebMediaPlayerAction& action);
731 void OnNotifyRendererViewType(ViewType::Type view_type); 731 void OnNotifyRendererViewType(ViewType::Type view_type);
732 void OnUpdateBrowserWindowId(int window_id); 732 void OnUpdateBrowserWindowId(int window_id);
733 void OnExecuteCode(const ViewMsg_ExecuteCode_Params& params); 733 void OnExecuteCode(const ViewMsg_ExecuteCode_Params& params);
734 void ExecuteCodeImpl(WebKit::WebFrame* frame, 734 void ExecuteCodeImpl(WebKit::WebFrame* frame,
735 const ViewMsg_ExecuteCode_Params& params); 735 const ViewMsg_ExecuteCode_Params& params);
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 // in OnClosePage. 1217 // in OnClosePage.
1218 int cross_origin_access_count_; 1218 int cross_origin_access_count_;
1219 int same_origin_access_count_; 1219 int same_origin_access_count_;
1220 1220
1221 PepperPluginDelegateImpl pepper_delegate_; 1221 PepperPluginDelegateImpl pepper_delegate_;
1222 1222
1223 DISALLOW_COPY_AND_ASSIGN(RenderView); 1223 DISALLOW_COPY_AND_ASSIGN(RenderView);
1224 }; 1224 };
1225 1225
1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698