WebKit Bugzilla
Attachment 349208 Details for
Bug 189394
: Clean up FontAttributeChanges.cpp after r235748
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for landing
bug-189394-20180907153227.patch (text/plain), 4.20 KB, created by
Wenson Hsieh
on 2018-09-07 15:32:28 PDT
(
hide
)
Description:
Patch for landing
Filename:
MIME Type:
Creator:
Wenson Hsieh
Created:
2018-09-07 15:32:28 PDT
Size:
4.20 KB
patch
obsolete
>Subversion Revision: 235810 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 376ee91ed32fdb074654747d591535aec2a4f8ae..958c1929a4c3a7b05c22848ee1cd3137ce62d9f0 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,14 @@ >+2018-09-07 Wenson Hsieh <wenson_hsieh@apple.com> >+ >+ Clean up FontAttributeChanges.cpp after r235748 >+ https://bugs.webkit.org/show_bug.cgi?id=189394 >+ >+ Reviewed by Tim Horton. >+ >+ * Sources.txt: Move FontAttributeChanges.cpp into unified sources. >+ * WebCore.xcodeproj/project.pbxproj: >+ * editing/FontAttributeChanges.cpp: Replace `#import`s with `#include`s. >+ > 2018-09-07 Youenn Fablet <youenn@apple.com> > > RealtimeOutgoingVideoSourceCocoa should use VTImageRotationSession to rotate CVPixelBuffers >diff --git a/Source/WebCore/Sources.txt b/Source/WebCore/Sources.txt >index 12b536bba64a64e1a0dc3adbc66d85bb5d5e7236..7cf364fa90c8aee3361af81f2395016e22171acb 100644 >--- a/Source/WebCore/Sources.txt >+++ b/Source/WebCore/Sources.txt >@@ -873,6 +873,7 @@ editing/Editing.cpp > editing/EditingStyle.cpp > editing/Editor.cpp > editing/EditorCommand.cpp >+editing/FontAttributeChanges.cpp > editing/FormatBlockCommand.cpp > editing/FrameSelection.cpp > editing/HTMLInterchange.cpp >diff --git a/Source/WebCore/WebCore.xcodeproj/project.pbxproj b/Source/WebCore/WebCore.xcodeproj/project.pbxproj >index 7929ff638f3ae43725aecc0ce92c73409bf58a53..199bad164b2c8bfbd0ef1229af1dabc8da89b29c 100644 >--- a/Source/WebCore/WebCore.xcodeproj/project.pbxproj >+++ b/Source/WebCore/WebCore.xcodeproj/project.pbxproj >@@ -4824,7 +4824,6 @@ > F3ABFE0C130E9DA000E7F7D1 /* InstrumentingAgents.h in Headers */ = {isa = PBXBuildFile; fileRef = F3ABFE0B130E9DA000E7F7D1 /* InstrumentingAgents.h */; }; > F3D461491161D53200CA0D09 /* JSErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D461471161D53200CA0D09 /* JSErrorHandler.h */; }; > F433E9031DBBDBA200EF0D14 /* StaticPasteboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F433E9021DBBDBA200EF0D14 /* StaticPasteboard.h */; settings = {ATTRIBUTES = (Private, ); }; }; >- F442850C2140412500CCDA22 /* FontAttributeChanges.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F442850B2140412500CCDA22 /* FontAttributeChanges.cpp */; }; > F44A5F591FED38F2007F5944 /* LegacyNSPasteboardTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = F44A5F571FED3830007F5944 /* LegacyNSPasteboardTypes.h */; settings = {ATTRIBUTES = (Private, ); }; }; > F44EBBD91DB5D21400277334 /* StaticRange.h in Headers */ = {isa = PBXBuildFile; fileRef = F44EBBD81DB5D21400277334 /* StaticRange.h */; settings = {ATTRIBUTES = (Private, ); }; }; > F45C231E1995B73B00A6E2E3 /* AxisScrollSnapOffsets.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C231C1995B73B00A6E2E3 /* AxisScrollSnapOffsets.h */; settings = {ATTRIBUTES = (Private, ); }; }; >@@ -31495,7 +31494,6 @@ > 5C4304B0191AC908000E2BC0 /* EXTShaderTextureLOD.cpp in Sources */, > 727AFED41A2EA6AE000442E8 /* EXTsRGB.cpp in Sources */, > 7728694E14F8882500F484DC /* EXTTextureFilterAnisotropic.cpp in Sources */, >- F442850C2140412500CCDA22 /* FontAttributeChanges.cpp in Sources */, > 7CE6CBFD187F394900D46BF5 /* FormatConverter.cpp in Sources */, > 51A4BB0A1954D61600FA5C2E /* Gamepad.cpp in Sources */, > 518F4FF6194CA4E60081BAAE /* GamepadButton.cpp in Sources */, >diff --git a/Source/WebCore/editing/FontAttributeChanges.cpp b/Source/WebCore/editing/FontAttributeChanges.cpp >index 40b3d62ab60eef5f5a9b5c767df5c06b484fc353..6ea0dce22f40ada50743758baaf9451ffcef1235 100644 >--- a/Source/WebCore/editing/FontAttributeChanges.cpp >+++ b/Source/WebCore/editing/FontAttributeChanges.cpp >@@ -23,16 +23,16 @@ > * THE POSSIBILITY OF SUCH DAMAGE. > */ > >-#import "config.h" >-#import "FontAttributeChanges.h" >- >-#import "CSSPropertyNames.h" >-#import "CSSShadowValue.h" >-#import "CSSValueKeywords.h" >-#import "CSSValueList.h" >-#import "CSSValuePool.h" >-#import "EditingStyle.h" >-#import "StyleProperties.h" >+#include "config.h" >+#include "FontAttributeChanges.h" >+ >+#include "CSSPropertyNames.h" >+#include "CSSShadowValue.h" >+#include "CSSValueKeywords.h" >+#include "CSSValueList.h" >+#include "CSSValuePool.h" >+#include "EditingStyle.h" >+#include "StyleProperties.h" > > namespace WebCore { >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 189394
:
349109
| 349208