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

Side by Side Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 2161293002: Color: Separate ICCProfile and ColorSpace structures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: incorporate review feedback Created 4 years, 5 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 #include "content/browser/renderer_host/render_view_host_impl.h" 5 #include "content/browser/renderer_host/render_view_host_impl.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 params.replicated_frame_state = replicated_frame_state; 363 params.replicated_frame_state = replicated_frame_state;
364 params.proxy_routing_id = proxy_route_id; 364 params.proxy_routing_id = proxy_route_id;
365 params.hidden = GetWidget()->is_hidden(); 365 params.hidden = GetWidget()->is_hidden();
366 params.never_visible = delegate_->IsNeverVisible(); 366 params.never_visible = delegate_->IsNeverVisible();
367 params.window_was_created_with_opener = window_was_created_with_opener; 367 params.window_was_created_with_opener = window_was_created_with_opener;
368 params.next_page_id = next_page_id; 368 params.next_page_id = next_page_id;
369 params.enable_auto_resize = GetWidget()->auto_resize_enabled(); 369 params.enable_auto_resize = GetWidget()->auto_resize_enabled();
370 params.min_size = GetWidget()->min_size_for_auto_resize(); 370 params.min_size = GetWidget()->min_size_for_auto_resize();
371 params.max_size = GetWidget()->max_size_for_auto_resize(); 371 params.max_size = GetWidget()->max_size_for_auto_resize();
372 params.page_zoom_level = delegate_->GetPendingPageZoomLevel(); 372 params.page_zoom_level = delegate_->GetPendingPageZoomLevel();
373 params.image_decode_color_space = gfx::ColorSpace::FromBestMonitor(); 373 params.image_decode_color_space = gfx::ICCProfile::FromBestMonitor();
374 GetWidget()->GetResizeParams(&params.initial_size); 374 GetWidget()->GetResizeParams(&params.initial_size);
375 375
376 if (!Send(new ViewMsg_New(params))) 376 if (!Send(new ViewMsg_New(params)))
377 return false; 377 return false;
378 GetWidget()->SetInitialRenderSizeParams(params.initial_size); 378 GetWidget()->SetInitialRenderSizeParams(params.initial_size);
379 379
380 // If the RWHV has not yet been set, the surface ID namespace will get 380 // If the RWHV has not yet been set, the surface ID namespace will get
381 // passed down by the call to SetView(). 381 // passed down by the call to SetView().
382 if (GetWidget()->GetView()) { 382 if (GetWidget()->GetView()) {
383 Send(new ViewMsg_SetSurfaceClientId( 383 Send(new ViewMsg_SetSurfaceClientId(
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 // Note: We are using the origin URL provided by the sender here. It may be 1321 // Note: We are using the origin URL provided by the sender here. It may be
1322 // different from the receiver's. 1322 // different from the receiver's.
1323 file_system_file.url = 1323 file_system_file.url =
1324 GURL(storage::GetIsolatedFileSystemRootURIString( 1324 GURL(storage::GetIsolatedFileSystemRootURIString(
1325 file_system_url.origin(), filesystem_id, std::string()) 1325 file_system_url.origin(), filesystem_id, std::string())
1326 .append(register_name)); 1326 .append(register_name));
1327 } 1327 }
1328 } 1328 }
1329 1329
1330 } // namespace content 1330 } // namespace content
OLDNEW
« no previous file with comments | « cc/resources/transferable_resource.h ('k') | content/browser/renderer_host/render_widget_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698