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

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

Issue 2641973002: Use gfx::ICCProfile type consistently (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 484
485 enum ErrorPageType { 485 enum ErrorPageType {
486 DNS_ERROR, 486 DNS_ERROR,
487 HTTP_404, 487 HTTP_404,
488 CONNECTION_ERROR, 488 CONNECTION_ERROR,
489 }; 489 };
490 490
491 // RenderWidgetOwnerDelegate implementation ---------------------------------- 491 // RenderWidgetOwnerDelegate implementation ----------------------------------
492 492
493 void RenderWidgetDidSetColorProfile( 493 void RenderWidgetDidSetColorProfile(
494 const std::vector<char>& color_profile) override; 494 const gfx::ICCProfile& color_profile) override;
495 void RenderWidgetFocusChangeComplete() override; 495 void RenderWidgetFocusChangeComplete() override;
496 bool DoesRenderWidgetHaveTouchEventHandlersAt( 496 bool DoesRenderWidgetHaveTouchEventHandlersAt(
497 const gfx::Point& point) const override; 497 const gfx::Point& point) const override;
498 bool RenderWidgetWillHandleMouseEvent( 498 bool RenderWidgetWillHandleMouseEvent(
499 const blink::WebMouseEvent& event) override; 499 const blink::WebMouseEvent& event) override;
500 500
501 // Old WebFrameClient implementations ---------------------------------------- 501 // Old WebFrameClient implementations ----------------------------------------
502 502
503 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the 503 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the
504 // WebFrameClient. However, many implementations of WebFrameClient methods 504 // WebFrameClient. However, many implementations of WebFrameClient methods
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 // use the Observer interface to filter IPC messages and receive frame change 843 // use the Observer interface to filter IPC messages and receive frame change
844 // notifications. 844 // notifications.
845 // --------------------------------------------------------------------------- 845 // ---------------------------------------------------------------------------
846 846
847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 847 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
848 }; 848 };
849 849
850 } // namespace content 850 } // namespace content
851 851
852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 852 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698