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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 WebFloatPoint visualViewportOffset() const override; 217 WebFloatPoint visualViewportOffset() const override;
218 WebFloatSize visualViewportSize() const override; 218 WebFloatSize visualViewportSize() const override;
219 void resetScrollAndScaleState() override; 219 void resetScrollAndScaleState() override;
220 void setIgnoreViewportTagScaleLimits(bool) override; 220 void setIgnoreViewportTagScaleLimits(bool) override;
221 WebSize contentsPreferredMinimumSize() override; 221 WebSize contentsPreferredMinimumSize() override;
222 void setDisplayMode(WebDisplayMode) override; 222 void setDisplayMode(WebDisplayMode) override;
223 223
224 void setDeviceScaleFactor(float) override; 224 void setDeviceScaleFactor(float) override;
225 void setZoomFactorForDeviceScaleFactor(float) override; 225 void setZoomFactorForDeviceScaleFactor(float) override;
226 226
227 void setDeviceColorProfile(const WebVector<char>&) override; 227 void setDeviceColorProfile(const gfx::ICCProfile&) override;
228 228
229 void enableAutoResizeMode(const WebSize& minSize, 229 void enableAutoResizeMode(const WebSize& minSize,
230 const WebSize& maxSize) override; 230 const WebSize& maxSize) override;
231 void disableAutoResizeMode() override; 231 void disableAutoResizeMode() override;
232 void performMediaPlayerAction(const WebMediaPlayerAction& action, 232 void performMediaPlayerAction(const WebMediaPlayerAction& action,
233 const WebPoint& location) override; 233 const WebPoint& location) override;
234 void performPluginAction(const WebPluginAction&, const WebPoint&) override; 234 void performPluginAction(const WebPluginAction&, const WebPoint&) override;
235 void audioStateChanged(bool isAudioPlaying) override; 235 void audioStateChanged(bool isAudioPlaying) override;
236 WebHitTestResult hitTestResultAt(const WebPoint&) override; 236 WebHitTestResult hitTestResultAt(const WebPoint&) override;
237 WebHitTestResult hitTestResultForTap(const WebPoint&, 237 WebHitTestResult hitTestResultForTap(const WebPoint&,
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 741 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
742 }; 742 };
743 743
744 // We have no ways to check if the specified WebView is an instance of 744 // We have no ways to check if the specified WebView is an instance of
745 // WebViewImpl because WebViewImpl is the only implementation of WebView. 745 // WebViewImpl because WebViewImpl is the only implementation of WebView.
746 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 746 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
747 747
748 } // namespace blink 748 } // namespace blink
749 749
750 #endif 750 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/testing/ImageDecodeBench.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698