summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/wince
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2010-04-27 16:31:00 +0100
committerSteve Block <steveblock@google.com>2010-05-11 14:42:12 +0100
commitdcc8cf2e65d1aa555cce12431a16547e66b469ee (patch)
tree92a8d65cd5383bca9749f5327fb5e440563926e6 /WebCore/platform/wince
parentccac38a6b48843126402088a309597e682f40fe6 (diff)
downloadexternal_webkit-dcc8cf2e65d1aa555cce12431a16547e66b469ee.zip
external_webkit-dcc8cf2e65d1aa555cce12431a16547e66b469ee.tar.gz
external_webkit-dcc8cf2e65d1aa555cce12431a16547e66b469ee.tar.bz2
Merge webkit.org at r58033 : Initial merge by git
Change-Id: If006c38561af287c50cd578d251629b51e4d8cd1
Diffstat (limited to 'WebCore/platform/wince')
-rw-r--r--WebCore/platform/wince/FileSystemWince.cpp9
-rw-r--r--WebCore/platform/wince/KeygenWince.cpp2
-rw-r--r--WebCore/platform/wince/MIMETypeRegistryWince.cpp5
-rw-r--r--WebCore/platform/wince/PasteboardWince.cpp5
-rw-r--r--WebCore/platform/wince/SharedTimerWince.cpp5
-rw-r--r--WebCore/platform/wince/SystemTimeWince.cpp39
6 files changed, 17 insertions, 48 deletions
diff --git a/WebCore/platform/wince/FileSystemWince.cpp b/WebCore/platform/wince/FileSystemWince.cpp
index 2bb4dd5..cb165a6 100644
--- a/WebCore/platform/wince/FileSystemWince.cpp
+++ b/WebCore/platform/wince/FileSystemWince.cpp
@@ -31,8 +31,9 @@
#include "config.h"
#include "FileSystem.h"
-#include "CString.h"
+#include "NotImplemented.h"
#include "PlatformString.h"
+#include <wtf/text/CString.h>
#include <windows.h>
#include <wincrypt.h>
@@ -132,11 +133,11 @@ CString fileSystemRepresentation(const String&)
bool makeAllDirectories(const String& path)
{
- int lastDivPos = max(path.reverseFind('/'), path.reverseFind('\\'));
+ int lastDivPos = std::max(path.reverseFind('/'), path.reverseFind('\\'));
int endPos = path.length();
if (lastDivPos == path.length() - 1) {
endPos -= 1;
- lastDivPos = max(path.reverseFind('/', lastDivPos), path.reverseFind('\\', lastDivPos));
+ lastDivPos = std::max(path.reverseFind('/', lastDivPos), path.reverseFind('\\', lastDivPos));
}
if (lastDivPos > 0) {
@@ -159,7 +160,7 @@ String homeDirectoryPath()
String pathGetFileName(const String& path)
{
- return path.substring(max(path.reverseFind('/'), path.reverseFind('\\')) + 1);
+ return path.substring(std::max(path.reverseFind('/'), path.reverseFind('\\')) + 1);
}
String directoryName(const String& path)
diff --git a/WebCore/platform/wince/KeygenWince.cpp b/WebCore/platform/wince/KeygenWince.cpp
index b0f4d63..0c1b3c6 100644
--- a/WebCore/platform/wince/KeygenWince.cpp
+++ b/WebCore/platform/wince/KeygenWince.cpp
@@ -21,7 +21,7 @@
#include "SSLKeyGenerator.h"
#include "Base64.h"
-#include "CString.h"
+#include <wtf/text/CString.h>
#include <windows.h>
#include <wincrypt.h>
diff --git a/WebCore/platform/wince/MIMETypeRegistryWince.cpp b/WebCore/platform/wince/MIMETypeRegistryWince.cpp
index b6ead9b..9e1bece 100644
--- a/WebCore/platform/wince/MIMETypeRegistryWince.cpp
+++ b/WebCore/platform/wince/MIMETypeRegistryWince.cpp
@@ -133,4 +133,9 @@ String MIMETypeRegistry::getMIMETypeForExtension(const String &ext)
return result.isEmpty() ? "unknown/unknown" : result;
}
+bool MIMETypeRegistry::isApplicationPluginMIMEType(const String&)
+{
+ return false;
+}
+
}
diff --git a/WebCore/platform/wince/PasteboardWince.cpp b/WebCore/platform/wince/PasteboardWince.cpp
index 16f4968..70b4083 100644
--- a/WebCore/platform/wince/PasteboardWince.cpp
+++ b/WebCore/platform/wince/PasteboardWince.cpp
@@ -28,7 +28,6 @@
#include "config.h"
#include "Pasteboard.h"
-#include "CString.h"
#include "ClipboardUtilitiesWin.h"
#include "Document.h"
#include "DocumentFragment.h"
@@ -41,7 +40,9 @@
#include "Range.h"
#include "RenderImage.h"
#include "TextEncoding.h"
+#include "WebCoreInstanceHandle.h"
#include "markup.h"
+#include <wtf/text/CString.h>
namespace WebCore {
@@ -87,7 +88,7 @@ Pasteboard::Pasteboard()
WNDCLASS wc = {0};
memset(&wc, 0, sizeof(wc));
wc.lpfnWndProc = PasteboardOwnerWndProc;
- wc.hInstance = Page::instanceHandle();
+ wc.hInstance = WebCore::instanceHandle();
wc.lpszClassName = L"PasteboardOwnerWindowClass";
::RegisterClass(&wc);
diff --git a/WebCore/platform/wince/SharedTimerWince.cpp b/WebCore/platform/wince/SharedTimerWince.cpp
index a620a10..5f6a386 100644
--- a/WebCore/platform/wince/SharedTimerWince.cpp
+++ b/WebCore/platform/wince/SharedTimerWince.cpp
@@ -29,6 +29,7 @@
#include "Page.h"
#include "SystemTime.h"
+#include "WebCoreInstanceHandle.h"
#include "Widget.h"
#include <wtf/Assertions.h>
#include <wtf/CurrentTime.h>
@@ -80,12 +81,12 @@ static void initializeOffScreenTimerWindow()
WNDCLASS wcex = {0};
wcex.lpfnWndProc = TimerWindowWndProc;
- wcex.hInstance = Page::instanceHandle();
+ wcex.hInstance = WebCore::instanceHandle();
wcex.lpszClassName = kTimerWindowClassName;
RegisterClass(&wcex);
timerWindowHandle = CreateWindow(kTimerWindowClassName, 0, 0,
- CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, Page::instanceHandle(), 0);
+ CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, 0, 0, WebCore::instanceHandle(), 0);
}
void setSharedTimerFiredFunction(void (*f)())
diff --git a/WebCore/platform/wince/SystemTimeWince.cpp b/WebCore/platform/wince/SystemTimeWince.cpp
deleted file mode 100644
index 70b705b..0000000
--- a/WebCore/platform/wince/SystemTimeWince.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
- * Copyright (C) 2007-2008 Torch Mobile, Inc.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "config.h"
-#include "SystemTime.h"
-
-#include <windows.h>
-
-namespace WebCore {
-
-float userIdleTime()
-{
- return FLT_MAX;
-}
-
-}