summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/WebCore/plugins
diff options
context:
space:
mode:
authorPrasanth Ullattil <prasanth.ullattil@nokia.com>2009-08-11 14:15:49 +0200
committerPrasanth Ullattil <prasanth.ullattil@nokia.com>2009-08-11 14:19:31 +0200
commit0d3a88ae2f4f4c9b356ee093ba6d166b92256a56 (patch)
treed45caa73ca300359423da647977baaa908b8a1ad /src/3rdparty/webkit/WebCore/plugins
parent1c4a75de75157f0ffa0a75d8c5f177bf45119c50 (diff)
Fix Whitespace errors
Reviewed-by: Trust Me
Diffstat (limited to 'src/3rdparty/webkit/WebCore/plugins')
-rw-r--r--src/3rdparty/webkit/WebCore/plugins/win/PaintHooks.asm30
-rw-r--r--src/3rdparty/webkit/WebCore/plugins/win/PluginViewWin.cpp28
2 files changed, 29 insertions, 29 deletions
diff --git a/src/3rdparty/webkit/WebCore/plugins/win/PaintHooks.asm b/src/3rdparty/webkit/WebCore/plugins/win/PaintHooks.asm
index 9128663573..150881356a 100644
--- a/src/3rdparty/webkit/WebCore/plugins/win/PaintHooks.asm
+++ b/src/3rdparty/webkit/WebCore/plugins/win/PaintHooks.asm
@@ -16,35 +16,35 @@
; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
; Boston, MA 02110-1301, USA.
;*/
-
+
;HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
-PUBLIC _HBeginPaint
+PUBLIC _HBeginPaint
-_TEXT SEGMENT
+_TEXT SEGMENT
_HBeginPaint PROC
- mov r10,rcx
- mov eax,1017h
- syscall
- ret
+ mov r10,rcx
+ mov eax,1017h
+ syscall
+ ret
_HBeginPaint ENDP
-_TEXT ENDS
+_TEXT ENDS
;BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
-PUBLIC _HEndPaint
+PUBLIC _HEndPaint
-_TEXT SEGMENT
+_TEXT SEGMENT
_HEndPaint PROC
- mov r10,rcx
- mov eax,1019h
- syscall
- ret
+ mov r10,rcx
+ mov eax,1019h
+ syscall
+ ret
_HEndPaint ENDP
-_TEXT ENDS
+_TEXT ENDS
END
diff --git a/src/3rdparty/webkit/WebCore/plugins/win/PluginViewWin.cpp b/src/3rdparty/webkit/WebCore/plugins/win/PluginViewWin.cpp
index 4fc03dcd20..268718643a 100644
--- a/src/3rdparty/webkit/WebCore/plugins/win/PluginViewWin.cpp
+++ b/src/3rdparty/webkit/WebCore/plugins/win/PluginViewWin.cpp
@@ -214,22 +214,22 @@ static void hook(const char* module, const char* proc, unsigned& sysCallID, BYTE
pProc += 5;
#else
/* Disassembly of BeginPaint()
- 00000000779FC5B0 4C 8B D1 mov r10,rcx
- 00000000779FC5B3 B8 17 10 00 00 mov eax,1017h
- 00000000779FC5B8 0F 05 syscall
- 00000000779FC5BA C3 ret
- 00000000779FC5BB 90 nop
- 00000000779FC5BC 90 nop
- 00000000779FC5BD 90 nop
- 00000000779FC5BE 90 nop
- 00000000779FC5BF 90 nop
- 00000000779FC5C0 90 nop
- 00000000779FC5C1 90 nop
- 00000000779FC5C2 90 nop
- 00000000779FC5C3 90 nop
+ 00000000779FC5B0 4C 8B D1 mov r10,rcx
+ 00000000779FC5B3 B8 17 10 00 00 mov eax,1017h
+ 00000000779FC5B8 0F 05 syscall
+ 00000000779FC5BA C3 ret
+ 00000000779FC5BB 90 nop
+ 00000000779FC5BC 90 nop
+ 00000000779FC5BD 90 nop
+ 00000000779FC5BE 90 nop
+ 00000000779FC5BF 90 nop
+ 00000000779FC5C0 90 nop
+ 00000000779FC5C1 90 nop
+ 00000000779FC5C2 90 nop
+ 00000000779FC5C3 90 nop
*/
// Check for the signature as in the above disassembly
- DWORD guard = 0xB8D18B4C;
+ DWORD guard = 0xB8D18B4C;
if (*reinterpret_cast<DWORD*>(pProc) != guard)
return;