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

Unified Diff: Source/core/rendering/RegionOversetState.h

Issue 17176018: [CSS Regions] Add new regionOversetChange event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Integrated styling fixes Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBlock.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RegionOversetState.h
diff --git a/Source/core/css/StyleSheet.cpp b/Source/core/rendering/RegionOversetState.h
similarity index 78%
copy from Source/core/css/StyleSheet.cpp
copy to Source/core/rendering/RegionOversetState.h
index 04fbf0e61523d106b4a27a83a38df13fb39452c9..e29e370a20af93c1acaabae72a9122ba129fdae4 100644
--- a/Source/core/css/StyleSheet.cpp
+++ b/Source/core/rendering/RegionOversetState.h
@@ -1,7 +1,4 @@
-/**
- * (C) 1999-2003 Lars Knoll (knoll@kde.org)
- * Copyright (C) 2004, 2006 Apple Computer, Inc.
- *
+/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
@@ -16,14 +13,21 @@
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
+ *
*/
-#include "config.h"
-#include "core/css/StyleSheet.h"
+
+#ifndef RegionOversetState_h
+#define RegionOversetState_h
namespace WebCore {
-StyleSheet::~StyleSheet()
-{
-}
+enum RegionOversetState {
+ RegionUndefined,
+ RegionEmpty,
+ RegionFit,
+ RegionOverset
+};
+
+} // namespace WebCore
-}
+#endif // RegionOversetState_h
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698