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

Unified Diff: public/platform/WebLayerClient.h

Issue 18473002: Add an API to report debugName in GraphicsLayer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix layout test Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/platform/WebLayer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebLayerClient.h
diff --git a/public/platform/WebStorageQuotaType.h b/public/platform/WebLayerClient.h
similarity index 88%
copy from public/platform/WebStorageQuotaType.h
copy to public/platform/WebLayerClient.h
index aff1cf9adeaf642ca53d00c3e85260841efb7289..aa110f1fadf04dda05c979822ad0f9919bd432a0 100644
--- a/public/platform/WebStorageQuotaType.h
+++ b/public/platform/WebLayerClient.h
@@ -28,16 +28,20 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebStorageQuotaType_h
-#define WebStorageQuotaType_h
+#ifndef WebLayerClient_h
+#define WebLayerClient_h
namespace WebKit {
-enum WebStorageQuotaType {
- WebStorageQuotaTypeTemporary,
- WebStorageQuotaTypePersistent,
+class WebLayerClient {
+public:
+ virtual WebString debugName(WebLayer*) = 0;
+
+protected:
+ virtual ~WebLayerClient() { }
};
} // namespace WebKit
-#endif // WebStorageQuotaType_h
+#endif // WebLayerClient_h
+
« no previous file with comments | « public/platform/WebLayer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698