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

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

Issue 2068413002: cc: Remove fixed raster scale, stop rasterizing with will-change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 6 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end) const override; 150 bool selectionTextDirection(WebTextDirection& start, WebTextDirection& end) const override;
151 bool isSelectionAnchorFirst() const override; 151 bool isSelectionAnchorFirst() const override;
152 bool caretOrSelectionRange(size_t* location, size_t* length) override; 152 bool caretOrSelectionRange(size_t* location, size_t* length) override;
153 void setTextDirection(WebTextDirection) override; 153 void setTextDirection(WebTextDirection) override;
154 bool isAcceleratedCompositingActive() const override; 154 bool isAcceleratedCompositingActive() const override;
155 void willCloseLayerTreeView() override; 155 void willCloseLayerTreeView() override;
156 void didAcquirePointerLock() override; 156 void didAcquirePointerLock() override;
157 void didNotAcquirePointerLock() override; 157 void didNotAcquirePointerLock() override;
158 void didLosePointerLock() override; 158 void didLosePointerLock() override;
159 void didChangeWindowResizerRect() override; 159 void didChangeWindowResizerRect() override;
160 void reportFixedRasterScaleUseCounters(bool hasBlurryContent, bool hasPotent ialPerformanceRegression) override;
161 160
162 // WebView methods: 161 // WebView methods:
163 virtual bool isWebView() const { return true; } 162 virtual bool isWebView() const { return true; }
164 void setMainFrame(WebFrame*) override; 163 void setMainFrame(WebFrame*) override;
165 void setCredentialManagerClient(WebCredentialManagerClient*) override; 164 void setCredentialManagerClient(WebCredentialManagerClient*) override;
166 void setPrerendererClient(WebPrerendererClient*) override; 165 void setPrerendererClient(WebPrerendererClient*) override;
167 void setSpellCheckClient(WebSpellCheckClient*) override; 166 void setSpellCheckClient(WebSpellCheckClient*) override;
168 WebSettings* settings() override; 167 WebSettings* settings() override;
169 WebString pageEncoding() const override; 168 WebString pageEncoding() const override;
170 void setPageEncoding(const WebString&) override; 169 void setPageEncoding(const WebString&) override;
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 double m_lastFrameTimeMonotonic; 759 double m_lastFrameTimeMonotonic;
761 }; 760 };
762 761
763 // We have no ways to check if the specified WebView is an instance of 762 // We have no ways to check if the specified WebView is an instance of
764 // WebViewImpl because WebViewImpl is the only implementation of WebView. 763 // WebViewImpl because WebViewImpl is the only implementation of WebView.
765 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 764 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
766 765
767 } // namespace blink 766 } // namespace blink
768 767
769 #endif 768 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698