Bug 118160 - Add IAccessibilityDelegate implementation to WinLauncher for testing purposes.
Summary: Add IAccessibilityDelegate implementation to WinLauncher for testing purposes.
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows 7
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-27 17:47 PDT by Roger Fong
Modified: 2013-06-28 09:26 PDT (History)
3 users (show)

See Also:


Attachments
patch (8.89 KB, patch)
2013-06-27 17:52 PDT, Roger Fong
bfulgham: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Roger Fong 2013-06-27 17:47:17 PDT
Implement the IAccessibilityDelegate implemented added in http://trac.webkit.org/changeset/152119
Comment 1 Roger Fong 2013-06-27 17:52:15 PDT
Created attachment 205652 [details]
patch
Comment 2 WebKit Commit Bot 2013-06-27 17:54:38 PDT
Attachment 205652 [details] did not pass style-queue:

Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Tools/ChangeLog', u'Tools/WinLauncher/AccessibilityDelegate.cpp', u'Tools/WinLauncher/AccessibilityDelegate.h', u'Tools/WinLauncher/WinLauncher.cpp', u'Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj', u'Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters']" exit_code: 1
Tools/WinLauncher/AccessibilityDelegate.cpp:26:  Found other header before WebCore config.h. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]
Tools/WinLauncher/AccessibilityDelegate.cpp:27:  Found header this file implements after other header. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]
Total errors found: 2 in 6 files


If any of these errors are false positives, please file a bug against check-webkit-style.
Comment 3 Roger Fong 2013-06-27 17:58:05 PDT
(In reply to comment #2)
> Attachment 205652 [details] did not pass style-queue:
> 
> Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Tools/ChangeLog', u'Tools/WinLauncher/AccessibilityDelegate.cpp', u'Tools/WinLauncher/AccessibilityDelegate.h', u'Tools/WinLauncher/WinLauncher.cpp', u'Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj', u'Tools/WinLauncher/WinLauncher.vcxproj/WinLauncherLib.vcxproj.filters']" exit_code: 1
> Tools/WinLauncher/AccessibilityDelegate.cpp:26:  Found other header before WebCore config.h. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]
> Tools/WinLauncher/AccessibilityDelegate.cpp:27:  Found header this file implements after other header. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]
> Total errors found: 2 in 6 files
> 
> 
> If any of these errors are false positives, please file a bug against check-webkit-style.

Don't think we need config.h here...
Comment 4 Brent Fulgham 2013-06-28 08:48:49 PDT
Comment on attachment 205652 [details]
patch

View in context: https://bugs.webkit.org/attachment.cgi?id=205652&action=review

r=me.

>> Tools/WinLauncher/AccessibilityDelegate.cpp:26
>> +#include "stdafx.h"
> 
> Found other header before WebCore config.h. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]

We should file a bug against style-check for StdAfx.h support.
Comment 5 Roger Fong 2013-06-28 09:00:15 PDT
> > 
> > Found other header before WebCore config.h. Should be: config.h, primary header, blank line, and then alphabetically sorted.  [build/include_order] [4]
> 
> We should file a bug against style-check for StdAfx.h support.

Yeah, I feel like there are a lot of random little Windows only file things that the style checker complains about that we should start tracking. 
I think we do two indents for COM interface method parameters or something and it doesn't like that either.
Comment 6 Roger Fong 2013-06-28 09:26:50 PDT
http://trac.webkit.org/changeset/152171