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

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

Issue 2839993002: [Android] Adding Smart GO/NEXT feature in Chrome (Closed)
Patch Set: Created 3 years, 8 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 WebFrame* relativeToFrame) override; 194 WebFrame* relativeToFrame) override;
195 WebLocalFrame* focusedFrame() override; 195 WebLocalFrame* focusedFrame() override;
196 void setFocusedFrame(WebFrame*) override; 196 void setFocusedFrame(WebFrame*) override;
197 void focusDocumentView(WebFrame*) override; 197 void focusDocumentView(WebFrame*) override;
198 void setInitialFocus(bool reverse) override; 198 void setInitialFocus(bool reverse) override;
199 void clearFocusedElement() override; 199 void clearFocusedElement() override;
200 bool scrollFocusedEditableElementIntoRect(const WebRect&) override; 200 bool scrollFocusedEditableElementIntoRect(const WebRect&) override;
201 void smoothScroll(int targetX, int targetY, long durationMs) override; 201 void smoothScroll(int targetX, int targetY, long durationMs) override;
202 void zoomToFindInPageRect(const WebRect&); 202 void zoomToFindInPageRect(const WebRect&);
203 void advanceFocus(bool reverse) override; 203 void advanceFocus(bool reverse) override;
204 void advanceFocusInForm(WebFocusType) override;
204 void advanceFocusAcrossFrames(WebFocusType, 205 void advanceFocusAcrossFrames(WebFocusType,
205 WebRemoteFrame* from, 206 WebRemoteFrame* from,
206 WebLocalFrame* to) override; 207 WebLocalFrame* to) override;
207 double zoomLevel() override; 208 double zoomLevel() override;
208 double setZoomLevel(double) override; 209 double setZoomLevel(double) override;
209 void zoomLimitsChanged(double minimumZoomLevel, 210 void zoomLimitsChanged(double minimumZoomLevel,
210 double maximumZoomLevel) override; 211 double maximumZoomLevel) override;
211 float textZoomFactor() override; 212 float textZoomFactor() override;
212 float setTextZoomFactor(float) override; 213 float setTextZoomFactor(float) override;
213 bool zoomToMultipleTargetsRect(const WebRect&) override; 214 bool zoomToMultipleTargetsRect(const WebRect&) override;
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 749 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
749 }; 750 };
750 751
751 // We have no ways to check if the specified WebView is an instance of 752 // We have no ways to check if the specified WebView is an instance of
752 // WebViewImpl because WebViewImpl is the only implementation of WebView. 753 // WebViewImpl because WebViewImpl is the only implementation of WebView.
753 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 754 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
754 755
755 } // namespace blink 756 } // namespace blink
756 757
757 #endif 758 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698