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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.h

Issue 2605743002: Use consistent types for ICC profiles (Closed)
Patch Set: No export for static lib 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 WebFloatPoint visualViewportOffset() const override; 219 WebFloatPoint visualViewportOffset() const override;
220 WebFloatSize visualViewportSize() const override; 220 WebFloatSize visualViewportSize() const override;
221 void resetScrollAndScaleState() override; 221 void resetScrollAndScaleState() override;
222 void setIgnoreViewportTagScaleLimits(bool) override; 222 void setIgnoreViewportTagScaleLimits(bool) override;
223 WebSize contentsPreferredMinimumSize() override; 223 WebSize contentsPreferredMinimumSize() override;
224 void setDisplayMode(WebDisplayMode) override; 224 void setDisplayMode(WebDisplayMode) override;
225 225
226 void setDeviceScaleFactor(float) override; 226 void setDeviceScaleFactor(float) override;
227 void setZoomFactorForDeviceScaleFactor(float) override; 227 void setZoomFactorForDeviceScaleFactor(float) override;
228 228
229 void setDeviceColorProfile(const WebVector<char>&) override; 229 void setDeviceColorSpace(const gfx::ColorSpace&) override;
230 230
231 void enableAutoResizeMode(const WebSize& minSize, 231 void enableAutoResizeMode(const WebSize& minSize,
232 const WebSize& maxSize) override; 232 const WebSize& maxSize) override;
233 void disableAutoResizeMode() override; 233 void disableAutoResizeMode() override;
234 void performMediaPlayerAction(const WebMediaPlayerAction& action, 234 void performMediaPlayerAction(const WebMediaPlayerAction& action,
235 const WebPoint& location) override; 235 const WebPoint& location) override;
236 void performPluginAction(const WebPluginAction&, const WebPoint&) override; 236 void performPluginAction(const WebPluginAction&, const WebPoint&) override;
237 void audioStateChanged(bool isAudioPlaying) override; 237 void audioStateChanged(bool isAudioPlaying) override;
238 WebHitTestResult hitTestResultAt(const WebPoint&) override; 238 WebHitTestResult hitTestResultAt(const WebPoint&) override;
239 WebHitTestResult hitTestResultForTap(const WebPoint&, 239 WebHitTestResult hitTestResultForTap(const WebPoint&,
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 738 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
739 }; 739 };
740 740
741 // We have no ways to check if the specified WebView is an instance of 741 // We have no ways to check if the specified WebView is an instance of
742 // WebViewImpl because WebViewImpl is the only implementation of WebView. 742 // WebViewImpl because WebViewImpl is the only implementation of WebView.
743 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 743 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
744 744
745 } // namespace blink 745 } // namespace blink
746 746
747 #endif 747 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698