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

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

Issue 556703005: Initial draft - modify ViewportAnchor to know about both inner and outer viewports. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: ViewportAnchor passes the inner viewport offset relative to outer viewport; fixed bugs Created 6 years, 3 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 483
484 bool pinchVirtualViewportEnabled() const; 484 bool pinchVirtualViewportEnabled() const;
485 485
486 bool matchesHeuristicsForGpuRasterizationForTesting() const { return m_match esHeuristicsForGpuRasterization; } 486 bool matchesHeuristicsForGpuRasterizationForTesting() const { return m_match esHeuristicsForGpuRasterization; }
487 487
488 private: 488 private:
489 // TODO(bokan): Remains for legacy pinch. Remove once it's gone. Made privat e to 489 // TODO(bokan): Remains for legacy pinch. Remove once it's gone. Made privat e to
490 // prevent external usage 490 // prevent external usage
491 virtual void setPageScaleFactor(float scaleFactor, const WebPoint& origin) O VERRIDE; 491 virtual void setPageScaleFactor(float scaleFactor, const WebPoint& origin) O VERRIDE;
492 492
493 void scrollAndRescaleViewports(float scaleFactor, const IntPoint& mainFrameO rigin, const FloatPoint& pinchViewportOrigin);
494
495 IntRect visibleRectInDocument() const;
496
493 float legibleScale() const; 497 float legibleScale() const;
494 void refreshPageScaleFactorAfterLayout(); 498 void refreshPageScaleFactorAfterLayout();
495 void resumeTreeViewCommits(); 499 void resumeTreeViewCommits();
496 void setUserAgentPageScaleConstraints(PageScaleConstraints newConstraints); 500 void setUserAgentPageScaleConstraints(PageScaleConstraints newConstraints);
497 float clampPageScaleFactorToLimits(float) const; 501 float clampPageScaleFactorToLimits(float) const;
498 IntSize contentsSize() const; 502 IntSize contentsSize() const;
499 503
500 void resetSavedScrollAndScaleState(); 504 void resetSavedScrollAndScaleState();
501 505
502 void updateMainFrameScrollPosition(const IntPoint& scrollPosition, bool prog rammaticScroll); 506 void updateMainFrameScrollPosition(const IntPoint& scrollPosition, bool prog rammaticScroll);
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 bool m_userGestureObserved; 719 bool m_userGestureObserved;
716 }; 720 };
717 721
718 // We have no ways to check if the specified WebView is an instance of 722 // We have no ways to check if the specified WebView is an instance of
719 // WebViewImpl because WebViewImpl is the only implementation of WebView. 723 // WebViewImpl because WebViewImpl is the only implementation of WebView.
720 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 724 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
721 725
722 } // namespace blink 726 } // namespace blink
723 727
724 #endif 728 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698