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

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

Issue 233093006: Stop disabling force_compositing_mode for background RenderViews. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: background: test Created 6 years, 8 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 | Annotate | Revision Log
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 <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 const RendererPreferences& renderer_prefs, 187 const RendererPreferences& renderer_prefs,
188 const WebPreferences& webkit_prefs, 188 const WebPreferences& webkit_prefs,
189 int32 routing_id, 189 int32 routing_id,
190 int32 main_frame_routing_id, 190 int32 main_frame_routing_id,
191 int32 surface_id, 191 int32 surface_id,
192 int64 session_storage_namespace_id, 192 int64 session_storage_namespace_id,
193 const base::string16& frame_name, 193 const base::string16& frame_name,
194 bool is_renderer_created, 194 bool is_renderer_created,
195 bool swapped_out, 195 bool swapped_out,
196 bool hidden, 196 bool hidden,
197 bool background,
197 int32 next_page_id, 198 int32 next_page_id,
198 const blink::WebScreenInfo& screen_info, 199 const blink::WebScreenInfo& screen_info,
199 AccessibilityMode accessibility_mode); 200 AccessibilityMode accessibility_mode);
200 201
201 // Used by content_layouttest_support to hook into the creation of 202 // Used by content_layouttest_support to hook into the creation of
202 // RenderViewImpls. 203 // RenderViewImpls.
203 static void InstallCreateHook( 204 static void InstallCreateHook(
204 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*)); 205 RenderViewImpl* (*create_render_view_impl)(RenderViewImplParams*));
205 206
206 // Returns the RenderViewImpl containing the given WebView. 207 // Returns the RenderViewImpl containing the given WebView.
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 // use the Observer interface to filter IPC messages and receive frame change 1404 // use the Observer interface to filter IPC messages and receive frame change
1404 // notifications. 1405 // notifications.
1405 // --------------------------------------------------------------------------- 1406 // ---------------------------------------------------------------------------
1406 1407
1407 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1408 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1408 }; 1409 };
1409 1410
1410 } // namespace content 1411 } // namespace content
1411 1412
1412 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1413 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698