Bug 188851 - Move files in WebCore project to match Xcode folder structure
Summary: Move files in WebCore project to match Xcode folder structure
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: Safari 10
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: David Kilzer (:ddkilzer)
URL:
Keywords: InRadar
Depends on:
Blocks: 188754
  Show dependency treegraph
 
Reported: 2018-08-22 09:30 PDT by David Kilzer (:ddkilzer)
Modified: 2018-08-22 12:34 PDT (History)
8 users (show)

See Also:


Attachments
Patch v1 (83.60 KB, patch)
2018-08-22 09:44 PDT, David Kilzer (:ddkilzer)
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description David Kilzer (:ddkilzer) 2018-08-22 09:30:33 PDT
Before running the tool I wrote for Bug 188754 (Tool to fix folders that should map to directories in Xcode project files), we need to move 6 files in the WebCore project so that they appear where the Xcode project shows them in its folders.
Comment 1 David Kilzer (:ddkilzer) 2018-08-22 09:44:03 PDT
This patch mostly consists of 6 file moves (and fixing 3 style warnings for WAKViewInternal.h):

[master 4e8c3d6446f] Move files in WebCore project to match Xcode folder structure <https://webkit.org/b/188851>
 11 files changed, 40 insertions(+), 11 deletions(-)
 rename Source/WebCore/{ => Scripts}/LocalizableStrings.pm (100%)
 rename Source/WebCore/{ => Scripts}/extract-localizable-strings.pl (100%)
 rename Source/WebCore/platform/audio/{ => cocoa}/WebAudioBufferList.cpp (100%)
 rename Source/WebCore/platform/audio/{ => cocoa}/WebAudioBufferList.h (100%)
 rename Source/WebCore/platform/graphics/avfoundation/{ => objc}/MediaSampleAVFObjC.h (100%)
 rename Source/WebCore/platform/{ => ios/wak}/WAKViewInternal.h (90%)
Comment 2 David Kilzer (:ddkilzer) 2018-08-22 09:44:11 PDT
Created attachment 347810 [details]
Patch v1
Comment 3 David Kilzer (:ddkilzer) 2018-08-22 09:45:51 PDT
(In reply to David Kilzer (:ddkilzer) from comment #1)
> This patch mostly consists of 6 file moves (and fixing 3 style warnings for
> WAKViewInternal.h):
> 
> [master 4e8c3d6446f] Move files in WebCore project to match Xcode folder
> structure <https://webkit.org/b/188851>
>  11 files changed, 40 insertions(+), 11 deletions(-)
>  rename Source/WebCore/{ => Scripts}/LocalizableStrings.pm (100%)
>  rename Source/WebCore/{ => Scripts}/extract-localizable-strings.pl (100%)
>  rename Source/WebCore/platform/audio/{ => cocoa}/WebAudioBufferList.cpp
> (100%)
>  rename Source/WebCore/platform/audio/{ => cocoa}/WebAudioBufferList.h (100%)
>  rename Source/WebCore/platform/graphics/avfoundation/{ =>
> objc}/MediaSampleAVFObjC.h (100%)
>  rename Source/WebCore/platform/{ => ios/wak}/WAKViewInternal.h (90%)

This is the WAKViewInternal.h change:

diff --git a/Source/WebCore/platform/WAKViewInternal.h b/Source/WebCore/platform/ios/wak/WAKViewInternal.h
similarity index 90%
rename from Source/WebCore/platform/WAKViewInternal.h
rename to Source/WebCore/platform/ios/wak/WAKViewInternal.h
index 94f98dd299c..cad06283719 100644
--- a/Source/WebCore/platform/WAKViewInternal.h
+++ b/Source/WebCore/platform/ios/wak/WAKViewInternal.h
@@ -28,13 +28,15 @@
 #import "WAKView.h"
 #import "WKView.h"
 
-@interface WAKView () {
+@interface WAKView ()
+{
 @package
     WKViewContext viewContext;
     WKViewRef viewRef;
 
-    NSMutableSet *subviewReferences;    // This array is only used to keep WAKViews alive.
-                                        // The actual subviews are maintained by the WKView.
+    // This array is only used to keep WAKViews alive.
+    // The actual subviews are maintained by the WKView.
+    NSMutableSet *subviewReferences;
 
     BOOL _isHidden;
     BOOL _drawsOwnDescendants;
Comment 4 WebKit Commit Bot 2018-08-22 12:33:53 PDT
Comment on attachment 347810 [details]
Patch v1

Clearing flags on attachment: 347810

Committed r235190: <https://trac.webkit.org/changeset/235190>
Comment 5 WebKit Commit Bot 2018-08-22 12:33:55 PDT
All reviewed patches have been landed.  Closing bug.
Comment 6 Radar WebKit Bug Importer 2018-08-22 12:34:18 PDT
<rdar://problem/43616125>