summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webcursor.cc
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-14 18:32:23 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-01-14 18:32:23 +0000
commitfd8746e16aa0dc6de45beb8fcd22f46dbb2321ba (patch)
treec6b306dec24cb6eac4256aa8cc8d042a9cd2c0e9 /webkit/glue/webcursor.cc
parentb755635c32ae984e210320a3e92c03d4e4dbd263 (diff)
downloadchromium_src-fd8746e16aa0dc6de45beb8fcd22f46dbb2321ba.zip
chromium_src-fd8746e16aa0dc6de45beb8fcd22f46dbb2321ba.tar.gz
chromium_src-fd8746e16aa0dc6de45beb8fcd22f46dbb2321ba.tar.bz2
Fix build bustage. Update enum names.
TBR=dglazkov Review URL: http://codereview.chromium.org/18235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8028 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcursor.cc')
-rw-r--r--webkit/glue/webcursor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webcursor.cc b/webkit/glue/webcursor.cc
index 76673e5..39d6598 100644
--- a/webkit/glue/webcursor.cc
+++ b/webkit/glue/webcursor.cc
@@ -13,7 +13,7 @@
#include "base/pickle.h"
WebCursor::WebCursor()
- : type_(WebCore::PlatformCursor::typePointer) {
+ : type_(WebCore::PlatformCursor::TypePointer) {
InitPlatformData();
}
@@ -91,7 +91,7 @@ bool WebCursor::Serialize(Pickle* pickle) const {
}
bool WebCursor::IsCustom() const {
- return type_ == WebCore::PlatformCursor::typeCustom;
+ return type_ == WebCore::PlatformCursor::TypeCustom;
}
bool WebCursor::IsEqual(const WebCursor& other) const {
@@ -107,7 +107,7 @@ bool WebCursor::IsEqual(const WebCursor& other) const {
}
void WebCursor::Clear() {
- type_ = WebCore::PlatformCursor::typePointer;
+ type_ = WebCore::PlatformCursor::TypePointer;
hotspot_.set_x(0);
hotspot_.set_y(0);
custom_size_.set_width(0);