Changeset 140752 in webkit


Ignore:
Timestamp:
Jan 24, 2013 4:59:01 PM (11 years ago)
Author:
beidson@apple.com
Message:

Move Authentication and Downloads from WebProcess to Shared.
https://bugs.webkit.org/show_bug.cgi?id=107879

Reviewed by Anders Carlsson.

  • Shared/Authentication/AuthenticationManager.cpp: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.cpp.
  • Shared/Authentication/AuthenticationManager.h: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.h.
  • Shared/Authentication/AuthenticationManager.messages.in: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.messages.in.
  • Shared/Authentication/mac/AuthenticationManager.mac.mm: Renamed from Source/WebKit2/WebProcess/Authentication/mac/AuthenticationManager.mac.mm.
  • Shared/Downloads/Download.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/Download.cpp.
  • Shared/Downloads/Download.h: Renamed from Source/WebKit2/WebProcess/Downloads/Download.h.
  • Shared/Downloads/DownloadAuthenticationClient.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.cpp.
  • Shared/Downloads/DownloadAuthenticationClient.h: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.h.
  • Shared/Downloads/DownloadManager.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp.
  • Shared/Downloads/DownloadManager.h: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadManager.h.
  • Shared/Downloads/cfnet/DownloadCFNet.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/cfnet/DownloadCFNet.cpp.
  • Shared/Downloads/curl/DownloadCurl.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp.
  • Shared/Downloads/efl/DownloadSoupErrorsEfl.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/efl/DownloadSoupErrorsEfl.cpp.
  • Shared/Downloads/gtk/DownloadSoupErrorsGtk.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/gtk/DownloadSoupErrorsGtk.cpp.
  • Shared/Downloads/mac/DownloadMac.mm: Renamed from Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm.
  • Shared/Downloads/qt/DownloadQt.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp.
  • Shared/Downloads/qt/QtFileDownloader.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/qt/QtFileDownloader.cpp.
  • Shared/Downloads/qt/QtFileDownloader.h: Renamed from Source/WebKit2/WebProcess/Downloads/qt/QtFileDownloader.h.
  • Shared/Downloads/soup/DownloadSoup.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp.
  • Shared/Downloads/soup/DownloadSoupErrors.h: Renamed from Source/WebKit2/WebProcess/Downloads/soup/DownloadSoupErrors.h.
  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • Target.pri:
  • WebKit2.xcodeproj/project.pbxproj:
Location:
trunk/Source/WebKit2
Files:
10 added
5 edited
20 moved

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/CMakeLists.txt

    r140750 r140752  
    77    "${WEBKIT2_DIR}/Shared/API"
    88    "${WEBKIT2_DIR}/Shared/API/c"
     9    "${WEBKIT2_DIR}/Shared/Authentication"
    910    "${WEBKIT2_DIR}/Shared/CoordinatedGraphics"
    1011    "${WEBKIT2_DIR}/Shared/CoreIPCSupport"
     12    "${WEBKIT2_DIR}/Shared/Downloads"
    1113    "${WEBKIT2_DIR}/Shared/Network"
    1214    "${WEBKIT2_DIR}/Shared/Plugins"
     
    2628    "${WEBKIT2_DIR}/WebProcess"
    2729    "${WEBKIT2_DIR}/WebProcess/ApplicationCache"
    28     "${WEBKIT2_DIR}/WebProcess/Authentication"
    2930    "${WEBKIT2_DIR}/WebProcess/Battery"
    3031    "${WEBKIT2_DIR}/WebProcess/Cookies"
    31     "${WEBKIT2_DIR}/WebProcess/Downloads"
    3232    "${WEBKIT2_DIR}/WebProcess/FullScreen"
    3333    "${WEBKIT2_DIR}/WebProcess/Geolocation"
     
    381381    WebProcess/ApplicationCache/WebApplicationCacheManager.cpp
    382382
    383     WebProcess/Authentication/AuthenticationManager.cpp
     383    Shared/Authentication/AuthenticationManager.cpp
    384384
    385385    WebProcess/Battery/WebBatteryManager.cpp
     
    387387    WebProcess/Cookies/WebCookieManager.cpp
    388388
    389     WebProcess/Downloads/Download.cpp
    390     WebProcess/Downloads/DownloadAuthenticationClient.cpp
    391     WebProcess/Downloads/DownloadManager.cpp
     389    Shared/Downloads/Download.cpp
     390    Shared/Downloads/DownloadAuthenticationClient.cpp
     391    Shared/Downloads/DownloadManager.cpp
    392392
    393393    WebProcess/FullScreen/WebFullScreenManager.cpp
     
    552552    WebProcess/ApplicationCache/WebApplicationCacheManager.messages.in
    553553
    554     WebProcess/Authentication/AuthenticationManager.messages.in
     554    Shared/Authentication/AuthenticationManager.messages.in
    555555
    556556    WebProcess/Battery/WebBatteryManager.messages.in
  • trunk/Source/WebKit2/ChangeLog

    r140750 r140752  
     12013-01-24  Brady Eidson  <beidson@apple.com>
     2
     3        Move Authentication and Downloads from WebProcess to Shared.
     4        https://bugs.webkit.org/show_bug.cgi?id=107879
     5
     6        Reviewed by Anders Carlsson.
     7
     8        * Shared/Authentication/AuthenticationManager.cpp: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.cpp.
     9        * Shared/Authentication/AuthenticationManager.h: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.h.
     10        * Shared/Authentication/AuthenticationManager.messages.in: Renamed from Source/WebKit2/WebProcess/Authentication/AuthenticationManager.messages.in.
     11        * Shared/Authentication/mac/AuthenticationManager.mac.mm: Renamed from Source/WebKit2/WebProcess/Authentication/mac/AuthenticationManager.mac.mm.
     12        * Shared/Downloads/Download.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/Download.cpp.
     13        * Shared/Downloads/Download.h: Renamed from Source/WebKit2/WebProcess/Downloads/Download.h.
     14        * Shared/Downloads/DownloadAuthenticationClient.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.cpp.
     15        * Shared/Downloads/DownloadAuthenticationClient.h: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.h.
     16        * Shared/Downloads/DownloadManager.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp.
     17        * Shared/Downloads/DownloadManager.h: Renamed from Source/WebKit2/WebProcess/Downloads/DownloadManager.h.
     18        * Shared/Downloads/cfnet/DownloadCFNet.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/cfnet/DownloadCFNet.cpp.
     19        * Shared/Downloads/curl/DownloadCurl.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp.
     20        * Shared/Downloads/efl/DownloadSoupErrorsEfl.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/efl/DownloadSoupErrorsEfl.cpp.
     21        * Shared/Downloads/gtk/DownloadSoupErrorsGtk.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/gtk/DownloadSoupErrorsGtk.cpp.
     22        * Shared/Downloads/mac/DownloadMac.mm: Renamed from Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm.
     23        * Shared/Downloads/qt/DownloadQt.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp.
     24        * Shared/Downloads/qt/QtFileDownloader.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/qt/QtFileDownloader.cpp.
     25        * Shared/Downloads/qt/QtFileDownloader.h: Renamed from Source/WebKit2/WebProcess/Downloads/qt/QtFileDownloader.h.
     26        * Shared/Downloads/soup/DownloadSoup.cpp: Renamed from Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp.
     27        * Shared/Downloads/soup/DownloadSoupErrors.h: Renamed from Source/WebKit2/WebProcess/Downloads/soup/DownloadSoupErrors.h.
     28
     29        * CMakeLists.txt:
     30        * GNUmakefile.list.am:
     31        * Target.pri:
     32        * WebKit2.xcodeproj/project.pbxproj:
     33
    1342013-01-24  Seokju Kwon  <seokju.kwon@gmail.com>
    235
  • trunk/Source/WebKit2/GNUmakefile.list.am

    r140468 r140752  
    370370        Source/WebKit2/Shared/APIObject.cpp \
    371371        Source/WebKit2/Shared/APIObject.h \
     372        Source/WebKit2/Shared/Authentication/AuthenticationManager.cpp \
     373        Source/WebKit2/Shared/Authentication/AuthenticationManager.h \
    372374        Source/WebKit2/Shared/BlockingResponseMap.h \
    373375        Source/WebKit2/Shared/ShareableBitmap.cpp \
     
    385387        Source/WebKit2/Shared/CoreIPCSupport/WebContextMessageKinds.h \
    386388        Source/WebKit2/Shared/DrawingAreaInfo.h \
     389        Source/WebKit2/Shared/Downloads/Download.cpp \
     390        Source/WebKit2/Shared/Downloads/Download.h \
     391        Source/WebKit2/Shared/Downloads/DownloadAuthenticationClient.h \
     392        Source/WebKit2/Shared/Downloads/DownloadManager.cpp \
     393        Source/WebKit2/Shared/Downloads/DownloadManager.h \
     394        Source/WebKit2/Shared/Downloads/gtk/DownloadSoupErrorsGtk.cpp \
     395        Source/WebKit2/Shared/Downloads/soup/DownloadSoup.cpp \
     396        Source/WebKit2/Shared/Downloads/soup/DownloadSoupErrors.h \
    387397        Source/WebKit2/Shared/EditorState.cpp \
    388398        Source/WebKit2/Shared/EditorState.h \
     
    970980        Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h \
    971981        Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \
    972         Source/WebKit2/WebProcess/Authentication/AuthenticationManager.cpp \
    973         Source/WebKit2/WebProcess/Authentication/AuthenticationManager.h \
    974982        Source/WebKit2/WebProcess/Battery/WebBatteryManager.cpp \
    975983        Source/WebKit2/WebProcess/Battery/WebBatteryManager.h \
     
    979987        Source/WebKit2/WebProcess/Cookies/soup/WebKitSoupCookieJarSqlite.cpp \
    980988        Source/WebKit2/WebProcess/Cookies/soup/WebKitSoupCookieJarSqlite.h \
    981         Source/WebKit2/WebProcess/Downloads/Download.cpp \
    982         Source/WebKit2/WebProcess/Downloads/Download.h \
    983         Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.h \
    984         Source/WebKit2/WebProcess/Downloads/DownloadManager.cpp \
    985         Source/WebKit2/WebProcess/Downloads/DownloadManager.h \
    986         Source/WebKit2/WebProcess/Downloads/gtk/DownloadSoupErrorsGtk.cpp \
    987         Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp \
    988         Source/WebKit2/WebProcess/Downloads/soup/DownloadSoupErrors.h \
    989989        Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.cpp \
    990990        Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.h \
  • trunk/Source/WebKit2/Target.pri

    r140746 r140752  
    7171    Shared/API/c/qt/WKImageQt.h \
    7272    Shared/APIClientTraits.h \
     73    Shared/Authentication/AuthenticationManager.h \
    7374    Shared/ShareableBitmap.h \
    7475    Shared/CacheModel.h \
     
    7778    Shared/ConnectionStack.h \
    7879    Shared/DictionaryPopupInfo.h \
     80    Shared/Downloads/Download.h \
     81    Shared/Downloads/DownloadManager.h \
     82    Shared/Downloads/qt/QtFileDownloader.h \
    7983    Shared/EditorState.h \
    8084    Shared/FontInfo.h \
     
    291295    UIProcess/WebVibrationProxy.h \
    292296    WebProcess/ApplicationCache/WebApplicationCacheManager.h \
    293     WebProcess/Authentication/AuthenticationManager.h \
    294297    WebProcess/Battery/WebBatteryManager.h \
    295298    WebProcess/Cookies/WebCookieManager.h \
    296     WebProcess/Downloads/Download.h \
    297     WebProcess/Downloads/DownloadManager.h \
    298     WebProcess/Downloads/qt/QtFileDownloader.h \
    299299    WebProcess/FullScreen/WebFullScreenManager.h \
    300300    WebProcess/Geolocation/GeolocationPermissionRequestManager.h \
     
    445445    Shared/APIClientTraits.cpp \
    446446    Shared/APIObject.cpp \
     447    Shared/Authentication/AuthenticationManager.cpp \
    447448    Shared/Plugins/Netscape/NetscapePluginModule.cpp \
    448449    Shared/Plugins/Netscape/NetscapePluginModuleNone.cpp \
     
    461462    Shared/ConnectionStack.cpp \
    462463    Shared/DictionaryPopupInfo.cpp \
     464    Shared/Downloads/Download.cpp \
     465    Shared/Downloads/DownloadManager.cpp \
     466    Shared/Downloads/qt/DownloadQt.cpp \
     467    Shared/Downloads/qt/QtFileDownloader.cpp \
    463468    Shared/EditorState.cpp \
    464469    Shared/FontInfo.cpp \
     
    662667    UIProcess/qt/WebProcessProxyQt.cpp \
    663668    WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \
    664     WebProcess/Authentication/AuthenticationManager.cpp \
    665669    WebProcess/Battery/WebBatteryManager.cpp \
    666670    WebProcess/Cookies/WebCookieManager.cpp \
    667671    WebProcess/Cookies/qt/WebCookieManagerQt.cpp \
    668     WebProcess/Downloads/Download.cpp \
    669     WebProcess/Downloads/DownloadManager.cpp \
    670     WebProcess/Downloads/qt/DownloadQt.cpp \
    671     WebProcess/Downloads/qt/QtFileDownloader.cpp \
    672672    WebProcess/FullScreen/WebFullScreenManager.cpp \
    673673    WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp \
  • trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj

    r140723 r140752  
    141141                1A594ABB112A1FB6009DE7C7 /* WebUIClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A594AB9112A1FB6009DE7C7 /* WebUIClient.h */; };
    142142                1A5E4DA412D3BD3D0099A2BB /* TextCheckerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5E4DA312D3BD3D0099A2BB /* TextCheckerState.h */; };
    143                 1A61614F127798B5003ACD86 /* DownloadManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A61614D127798B5003ACD86 /* DownloadManager.cpp */; };
    144                 1A616150127798B5003ACD86 /* DownloadManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A61614E127798B5003ACD86 /* DownloadManager.h */; };
    145                 1A6161D41278981C003ACD86 /* Download.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6161D21278981C003ACD86 /* Download.h */; };
    146                 1A6161D51278981C003ACD86 /* Download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A6161D31278981C003ACD86 /* Download.cpp */; };
    147                 1A61639612789B2F003ACD86 /* DownloadMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A61639512789B2F003ACD86 /* DownloadMac.mm */; };
    148143                1A6420E412DCE2FF00CAAE2C /* ShareableBitmap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A6420E212DCE2FF00CAAE2C /* ShareableBitmap.cpp */; };
    149144                1A6420E512DCE2FF00CAAE2C /* ShareableBitmap.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6420E312DCE2FF00CAAE2C /* ShareableBitmap.h */; };
     
    429424                512E35F8130B642E00ABD19A /* WebApplicationCacheManagerProxyMessageReceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 512E35F6130B642E00ABD19A /* WebApplicationCacheManagerProxyMessageReceiver.cpp */; };
    430425                512E35F9130B642E00ABD19A /* WebApplicationCacheManagerProxyMessages.h in Headers */ = {isa = PBXBuildFile; fileRef = 512E35F7130B642E00ABD19A /* WebApplicationCacheManagerProxyMessages.h */; };
    431                 512F588A12A8836600629530 /* AuthenticationManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 512F588712A8836600629530 /* AuthenticationManager.cpp */; };
    432                 512F588B12A8836600629530 /* AuthenticationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 512F588812A8836600629530 /* AuthenticationManager.h */; };
    433426                512F589612A8838800629530 /* AuthenticationChallengeProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 512F588E12A8838800629530 /* AuthenticationChallengeProxy.cpp */; };
    434427                512F589712A8838800629530 /* AuthenticationChallengeProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 512F588F12A8838800629530 /* AuthenticationChallengeProxy.h */; };
     
    492485                518D2CCA12D51DFB003BB93B /* SessionState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 518D2CC812D51DFB003BB93B /* SessionState.cpp */; };
    493486                518D2CCB12D51DFB003BB93B /* SessionState.h in Headers */ = {isa = PBXBuildFile; fileRef = 518D2CC912D51DFB003BB93B /* SessionState.h */; };
     487                518E8EF816B2091C00E91429 /* AuthenticationManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 518E8EF316B2091C00E91429 /* AuthenticationManager.cpp */; };
     488                518E8EF916B2091C00E91429 /* AuthenticationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 518E8EF416B2091C00E91429 /* AuthenticationManager.h */; };
     489                518E8EFB16B2091C00E91429 /* AuthenticationManager.mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 518E8EF716B2091C00E91429 /* AuthenticationManager.mac.mm */; };
     490                518E8F0716B2093700E91429 /* Download.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 518E8EFE16B2093700E91429 /* Download.cpp */; };
     491                518E8F0816B2093700E91429 /* Download.h in Headers */ = {isa = PBXBuildFile; fileRef = 518E8EFF16B2093700E91429 /* Download.h */; };
     492                518E8F0916B2093700E91429 /* DownloadAuthenticationClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 518E8F0016B2093700E91429 /* DownloadAuthenticationClient.cpp */; };
     493                518E8F0A16B2093700E91429 /* DownloadAuthenticationClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 518E8F0116B2093700E91429 /* DownloadAuthenticationClient.h */; };
     494                518E8F0B16B2093700E91429 /* DownloadManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 518E8F0216B2093700E91429 /* DownloadManager.cpp */; };
     495                518E8F0C16B2093700E91429 /* DownloadManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 518E8F0316B2093700E91429 /* DownloadManager.h */; };
     496                518E8F0D16B2093700E91429 /* DownloadMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 518E8F0516B2093700E91429 /* DownloadMac.mm */; };
    494497                519B4FF416A9EA970066874D /* SchedulableLoader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 519B4FF216A9EA970066874D /* SchedulableLoader.cpp */; };
    495498                519B4FF516A9EA970066874D /* SchedulableLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 519B4FF316A9EA970066874D /* SchedulableLoader.h */; };
     
    515518                51B3005012529D0E000B5CA0 /* WebBackForwardListCF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B3004E12529D0E000B5CA0 /* WebBackForwardListCF.cpp */; };
    516519                51B3005112529D0E000B5CA0 /* WebPageProxyCF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B3004F12529D0E000B5CA0 /* WebPageProxyCF.cpp */; };
    517                 51C4032C136749D800DC972D /* AuthenticationManager.mac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 51C4032B136749D800DC972D /* AuthenticationManager.mac.mm */; };
    518520                51CBBA0F165219B6005BE8FD /* NetworkResourceLoadParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51CBBA0D165219B6005BE8FD /* NetworkResourceLoadParameters.cpp */; };
    519521                51CBBA10165219B6005BE8FD /* NetworkResourceLoadParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CBBA0E165219B6005BE8FD /* NetworkResourceLoadParameters.h */; };
     
    13711373                1A594AB9112A1FB6009DE7C7 /* WebUIClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebUIClient.h; sourceTree = "<group>"; };
    13721374                1A5E4DA312D3BD3D0099A2BB /* TextCheckerState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextCheckerState.h; sourceTree = "<group>"; };
    1373                 1A61614D127798B5003ACD86 /* DownloadManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DownloadManager.cpp; sourceTree = "<group>"; };
    1374                 1A61614E127798B5003ACD86 /* DownloadManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DownloadManager.h; sourceTree = "<group>"; };
    1375                 1A6161D21278981C003ACD86 /* Download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Download.h; sourceTree = "<group>"; };
    1376                 1A6161D31278981C003ACD86 /* Download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Download.cpp; sourceTree = "<group>"; };
    1377                 1A61639512789B2F003ACD86 /* DownloadMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DownloadMac.mm; sourceTree = "<group>"; };
    13781375                1A6420E212DCE2FF00CAAE2C /* ShareableBitmap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ShareableBitmap.cpp; sourceTree = "<group>"; };
    13791376                1A6420E312DCE2FF00CAAE2C /* ShareableBitmap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShareableBitmap.h; sourceTree = "<group>"; };
     
    17051702                512E35F6130B642E00ABD19A /* WebApplicationCacheManagerProxyMessageReceiver.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WebApplicationCacheManagerProxyMessageReceiver.cpp; sourceTree = "<group>"; };
    17061703                512E35F7130B642E00ABD19A /* WebApplicationCacheManagerProxyMessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebApplicationCacheManagerProxyMessages.h; sourceTree = "<group>"; };
    1707                 512F588712A8836600629530 /* AuthenticationManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AuthenticationManager.cpp; sourceTree = "<group>"; };
    1708                 512F588812A8836600629530 /* AuthenticationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthenticationManager.h; sourceTree = "<group>"; };
    1709                 512F588912A8836600629530 /* AuthenticationManager.messages.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AuthenticationManager.messages.in; sourceTree = "<group>"; };
    17101704                512F588E12A8838800629530 /* AuthenticationChallengeProxy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AuthenticationChallengeProxy.cpp; sourceTree = "<group>"; };
    17111705                512F588F12A8838800629530 /* AuthenticationChallengeProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AuthenticationChallengeProxy.h; sourceTree = "<group>"; };
     
    17621756                518D2CC812D51DFB003BB93B /* SessionState.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SessionState.cpp; sourceTree = "<group>"; };
    17631757                518D2CC912D51DFB003BB93B /* SessionState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SessionState.h; sourceTree = "<group>"; };
     1758                518E8EF316B2091C00E91429 /* AuthenticationManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AuthenticationManager.cpp; path = Authentication/AuthenticationManager.cpp; sourceTree = "<group>"; };
     1759                518E8EF416B2091C00E91429 /* AuthenticationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AuthenticationManager.h; path = Authentication/AuthenticationManager.h; sourceTree = "<group>"; };
     1760                518E8EF516B2091C00E91429 /* AuthenticationManager.messages.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = AuthenticationManager.messages.in; path = Authentication/AuthenticationManager.messages.in; sourceTree = "<group>"; };
     1761                518E8EF716B2091C00E91429 /* AuthenticationManager.mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AuthenticationManager.mac.mm; sourceTree = "<group>"; };
     1762                518E8EFE16B2093700E91429 /* Download.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Download.cpp; path = Downloads/Download.cpp; sourceTree = "<group>"; };
     1763                518E8EFF16B2093700E91429 /* Download.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Download.h; path = Downloads/Download.h; sourceTree = "<group>"; };
     1764                518E8F0016B2093700E91429 /* DownloadAuthenticationClient.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DownloadAuthenticationClient.cpp; path = Downloads/DownloadAuthenticationClient.cpp; sourceTree = "<group>"; };
     1765                518E8F0116B2093700E91429 /* DownloadAuthenticationClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DownloadAuthenticationClient.h; path = Downloads/DownloadAuthenticationClient.h; sourceTree = "<group>"; };
     1766                518E8F0216B2093700E91429 /* DownloadManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DownloadManager.cpp; path = Downloads/DownloadManager.cpp; sourceTree = "<group>"; };
     1767                518E8F0316B2093700E91429 /* DownloadManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DownloadManager.h; path = Downloads/DownloadManager.h; sourceTree = "<group>"; };
     1768                518E8F0516B2093700E91429 /* DownloadMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DownloadMac.mm; sourceTree = "<group>"; };
    17641769                519B4FF216A9EA970066874D /* SchedulableLoader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SchedulableLoader.cpp; path = NetworkProcess/SchedulableLoader.cpp; sourceTree = "<group>"; };
    17651770                519B4FF316A9EA970066874D /* SchedulableLoader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SchedulableLoader.h; path = NetworkProcess/SchedulableLoader.h; sourceTree = "<group>"; };
     
    17941799                51B3004E12529D0E000B5CA0 /* WebBackForwardListCF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WebBackForwardListCF.cpp; path = cf/WebBackForwardListCF.cpp; sourceTree = "<group>"; };
    17951800                51B3004F12529D0E000B5CA0 /* WebPageProxyCF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WebPageProxyCF.cpp; path = cf/WebPageProxyCF.cpp; sourceTree = "<group>"; };
    1796                 51C4032B136749D800DC972D /* AuthenticationManager.mac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AuthenticationManager.mac.mm; path = mac/AuthenticationManager.mac.mm; sourceTree = "<group>"; };
    17971801                51CBBA0D165219B6005BE8FD /* NetworkResourceLoadParameters.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkResourceLoadParameters.cpp; path = Network/NetworkResourceLoadParameters.cpp; sourceTree = "<group>"; };
    17981802                51CBBA0E165219B6005BE8FD /* NetworkResourceLoadParameters.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkResourceLoadParameters.h; path = Network/NetworkResourceLoadParameters.h; sourceTree = "<group>"; };
     
    26682672                        usesTabs = 0;
    26692673                };
    2670                 1A61614C127798B5003ACD86 /* Downloads */ = {
    2671                         isa = PBXGroup;
    2672                         children = (
    2673                                 1A61639412789B2F003ACD86 /* mac */,
    2674                                 1A6161D31278981C003ACD86 /* Download.cpp */,
    2675                                 1A6161D21278981C003ACD86 /* Download.h */,
    2676                                 1A61614D127798B5003ACD86 /* DownloadManager.cpp */,
    2677                                 1A61614E127798B5003ACD86 /* DownloadManager.h */,
    2678                         );
    2679                         path = Downloads;
    2680                         sourceTree = "<group>";
    2681                 };
    2682                 1A61639412789B2F003ACD86 /* mac */ = {
    2683                         isa = PBXGroup;
    2684                         children = (
    2685                                 1A61639512789B2F003ACD86 /* DownloadMac.mm */,
    2686                         );
    2687                         path = mac;
    2688                         sourceTree = "<group>";
    2689                 };
    26902674                1A6FA01C11E1526300DB1371 /* mac */ = {
    26912675                        isa = PBXGroup;
     
    28082792                        children = (
    28092793                                BCDDB314124EBCEF0048D13C /* API */,
     2794                                518E8EF116B208F000E91429 /* Authentication */,
    28102795                                1AAF0C4712B16328008E49E2 /* cf */,
    28112796                                C01A25FF12662F2100C9ED55 /* cg */,
    28122797                                BC111B5F112F635E00337BAB /* CoreIPCSupport */,
     2798                                518E8EF216B208F800E91429 /* Downloads */,
    28132799                                BC111B5A112F628200337BAB /* mac */,
    28142800                                51A8A60D1627F2AC000D90E9 /* Network */,
     
    32783264                        sourceTree = "<group>";
    32793265                };
    3280                 512F588612A8834700629530 /* Authentication */ = {
    3281                         isa = PBXGroup;
    3282                         children = (
    3283                                 51C4032A136749C400DC972D /* mac */,
    3284                                 512F588712A8836600629530 /* AuthenticationManager.cpp */,
    3285                                 512F588812A8836600629530 /* AuthenticationManager.h */,
    3286                                 512F588912A8836600629530 /* AuthenticationManager.messages.in */,
    3287                         );
    3288                         path = Authentication;
    3289                         sourceTree = "<group>";
    3290                 };
    32913266                512F588D12A8836F00629530 /* Authentication */ = {
    32923267                        isa = PBXGroup;
     
    33123287                        sourceTree = "<group>";
    33133288                };
     3289                518E8EF116B208F000E91429 /* Authentication */ = {
     3290                        isa = PBXGroup;
     3291                        children = (
     3292                                518E8EF316B2091C00E91429 /* AuthenticationManager.cpp */,
     3293                                518E8EF416B2091C00E91429 /* AuthenticationManager.h */,
     3294                                518E8EF516B2091C00E91429 /* AuthenticationManager.messages.in */,
     3295                                518E8EF616B2091C00E91429 /* mac */,
     3296                        );
     3297                        name = Authentication;
     3298                        sourceTree = "<group>";
     3299                };
     3300                518E8EF216B208F800E91429 /* Downloads */ = {
     3301                        isa = PBXGroup;
     3302                        children = (
     3303                                518E8F0416B2093700E91429 /* mac */,
     3304                                518E8EFE16B2093700E91429 /* Download.cpp */,
     3305                                518E8EFF16B2093700E91429 /* Download.h */,
     3306                                518E8F0016B2093700E91429 /* DownloadAuthenticationClient.cpp */,
     3307                                518E8F0116B2093700E91429 /* DownloadAuthenticationClient.h */,
     3308                                518E8F0216B2093700E91429 /* DownloadManager.cpp */,
     3309                                518E8F0316B2093700E91429 /* DownloadManager.h */,
     3310                        );
     3311                        name = Downloads;
     3312                        sourceTree = "<group>";
     3313                };
     3314                518E8EF616B2091C00E91429 /* mac */ = {
     3315                        isa = PBXGroup;
     3316                        children = (
     3317                                518E8EF716B2091C00E91429 /* AuthenticationManager.mac.mm */,
     3318                        );
     3319                        name = mac;
     3320                        path = Authentication/mac;
     3321                        sourceTree = "<group>";
     3322                };
     3323                518E8F0416B2093700E91429 /* mac */ = {
     3324                        isa = PBXGroup;
     3325                        children = (
     3326                                518E8F0516B2093700E91429 /* DownloadMac.mm */,
     3327                        );
     3328                        name = mac;
     3329                        path = Downloads/mac;
     3330                        sourceTree = "<group>";
     3331                };
    33143332                51A8A60D1627F2AC000D90E9 /* Network */ = {
    33153333                        isa = PBXGroup;
     
    33423360                        );
    33433361                        name = cf;
    3344                         sourceTree = "<group>";
    3345                 };
    3346                 51C4032A136749C400DC972D /* mac */ = {
    3347                         isa = PBXGroup;
    3348                         children = (
    3349                                 51C4032B136749D800DC972D /* AuthenticationManager.mac.mm */,
    3350                         );
    3351                         name = mac;
    33523362                        sourceTree = "<group>";
    33533363                };
     
    34083418                        children = (
    34093419                                512E352A130B559900ABD19A /* ApplicationCache */,
    3410                                 512F588612A8834700629530 /* Authentication */,
    34113420                                3309344B1315B93A0097A7BC /* Cookies */,
    3412                                 1A61614C127798B5003ACD86 /* Downloads */,
    34133421                                CD73BA3D131A2A2100EEDED2 /* FullScreen */,
    34143422                                BC0E5FCB12D696DD0012A72A /* Geolocation */,
     
    45734581                                512F589712A8838800629530 /* AuthenticationChallengeProxy.h in Headers */,
    45744582                                512F589912A8838800629530 /* AuthenticationDecisionListener.h in Headers */,
    4575                                 512F588B12A8836600629530 /* AuthenticationManager.h in Headers */,
    45764583                                512F58A312A883AD00629530 /* AuthenticationManagerMessages.h in Headers */,
    45774584                                1A64256812DE42EC00CAAE2C /* BackingStore.h in Headers */,
     
    45954602                                93FC67BE12D3CCF200A60610 /* DecoderAdapter.h in Headers */,
    45964603                                BCE81D99131AE02100241910 /* DictionaryPopupInfo.h in Headers */,
    4597                                 1A6161D41278981C003ACD86 /* Download.h in Headers */,
    4598                                 1A616150127798B5003ACD86 /* DownloadManager.h in Headers */,
    45994604                                1AB7D4CA1288AAA700CFD08C /* DownloadProxy.h in Headers */,
    46004605                                1AD25E96167AB08100EA9BCD /* DownloadProxyMap.h in Headers */,
     
    50735078                                1AAC4DE716B1CBF6009425E3 /* WebKeyValueStorageManager.h in Headers */,
    50745079                                1AD3306F16B1D991004F60E7 /* StorageAreaProxy.h in Headers */,
     5080                                518E8EF916B2091C00E91429 /* AuthenticationManager.h in Headers */,
     5081                                518E8F0816B2093700E91429 /* Download.h in Headers */,
     5082                                518E8F0A16B2093700E91429 /* DownloadAuthenticationClient.h in Headers */,
     5083                                518E8F0C16B2093700E91429 /* DownloadManager.h in Headers */,
    50755084                        );
    50765085                        runOnlyForDeploymentPostprocessing = 0;
     
    55515560                                512F589612A8838800629530 /* AuthenticationChallengeProxy.cpp in Sources */,
    55525561                                512F589812A8838800629530 /* AuthenticationDecisionListener.cpp in Sources */,
    5553                                 512F588A12A8836600629530 /* AuthenticationManager.cpp in Sources */,
    5554                                 51C4032C136749D800DC972D /* AuthenticationManager.mac.mm in Sources */,
    55555562                                512F58A212A883AD00629530 /* AuthenticationManagerMessageReceiver.cpp in Sources */,
    55565563                                1A64256912DE42EC00CAAE2C /* BackingStore.cpp in Sources */,
     
    55765583                                93FC67BD12D3CCF200A60610 /* DecoderAdapter.cpp in Sources */,
    55775584                                BCE81D98131AE02100241910 /* DictionaryPopupInfo.cpp in Sources */,
    5578                                 1A6161D51278981C003ACD86 /* Download.cpp in Sources */,
    5579                                 1A61639612789B2F003ACD86 /* DownloadMac.mm in Sources */,
    5580                                 1A61614F127798B5003ACD86 /* DownloadManager.cpp in Sources */,
    55815585                                1AB7D4CB1288AAA700CFD08C /* DownloadProxy.cpp in Sources */,
    55825586                                1AD25E95167AB08100EA9BCD /* DownloadProxyMap.cpp in Sources */,
     
    60546058                                1AAC4DE616B1CBF6009425E3 /* WebKeyValueStorageManager.cpp in Sources */,
    60556059                                1AD3306E16B1D991004F60E7 /* StorageAreaProxy.cpp in Sources */,
     6060                                518E8EF816B2091C00E91429 /* AuthenticationManager.cpp in Sources */,
     6061                                518E8EFB16B2091C00E91429 /* AuthenticationManager.mac.mm in Sources */,
     6062                                518E8F0716B2093700E91429 /* Download.cpp in Sources */,
     6063                                518E8F0916B2093700E91429 /* DownloadAuthenticationClient.cpp in Sources */,
     6064                                518E8F0B16B2093700E91429 /* DownloadManager.cpp in Sources */,
     6065                                518E8F0D16B2093700E91429 /* DownloadMac.mm in Sources */,
    60566066                        );
    60576067                        runOnlyForDeploymentPostprocessing = 0;
Note: See TracChangeset for help on using the changeset viewer.