├── .gitignore ├── CommandLine ├── CommandLine.swift ├── LICENSE ├── Option.swift └── StringExtensions.swift ├── LICENSE ├── README.md ├── bin └── xrecord ├── xrecord.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xrecord.xccheckout │ └── xcuserdata │ │ └── pmeenan.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── pmeenan.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── xcschememanagement.plist │ └── xrecord.xcscheme └── xrecord ├── PluginHeader.h ├── PluginHeaderHelper.cpp ├── PluginHeaderHelper.h ├── capture.swift ├── main.swift ├── support.h ├── support.mm └── xrecord-Bridging-Header.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/.gitignore -------------------------------------------------------------------------------- /CommandLine/CommandLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/CommandLine/CommandLine.swift -------------------------------------------------------------------------------- /CommandLine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/CommandLine/LICENSE -------------------------------------------------------------------------------- /CommandLine/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/CommandLine/Option.swift -------------------------------------------------------------------------------- /CommandLine/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/CommandLine/StringExtensions.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/README.md -------------------------------------------------------------------------------- /bin/xrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/bin/xrecord -------------------------------------------------------------------------------- /xrecord.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xrecord.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xrecord.xcodeproj/project.xcworkspace/xcshareddata/xrecord.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/project.xcworkspace/xcshareddata/xrecord.xccheckout -------------------------------------------------------------------------------- /xrecord.xcodeproj/project.xcworkspace/xcuserdata/pmeenan.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/project.xcworkspace/xcuserdata/pmeenan.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcschemes/xrecord.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord.xcodeproj/xcuserdata/pmeenan.xcuserdatad/xcschemes/xrecord.xcscheme -------------------------------------------------------------------------------- /xrecord/PluginHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/PluginHeader.h -------------------------------------------------------------------------------- /xrecord/PluginHeaderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/PluginHeaderHelper.cpp -------------------------------------------------------------------------------- /xrecord/PluginHeaderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/PluginHeaderHelper.h -------------------------------------------------------------------------------- /xrecord/capture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/capture.swift -------------------------------------------------------------------------------- /xrecord/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/main.swift -------------------------------------------------------------------------------- /xrecord/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/support.h -------------------------------------------------------------------------------- /xrecord/support.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/support.mm -------------------------------------------------------------------------------- /xrecord/xrecord-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.xrecord/HEAD/xrecord/xrecord-Bridging-Header.h --------------------------------------------------------------------------------