Changeset 284710 in webkit
- Timestamp:
- Oct 22, 2021, 12:50:43 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 19 edited
-
ChangeLog (modified) (1 diff)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.h (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.h (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.h (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerInterface.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerProxy.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.h (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementStore.cpp (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementConnectionCocoa.mm (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementNetworkLoaderCocoa.mm (modified) (2 diffs)
-
NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.h (modified) (1 diff)
-
NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.mm (modified) (2 diffs)
-
Shared/EntryPointUtilities/Cocoa/Daemon/PCMDaemonConnectionSet.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r284703 r284710 1 2021-10-22 Alex Christensen <achristensen@webkit.org> 2 3 Use C++17 nested namespace syntax for WebKit::PCM 4 https://bugs.webkit.org/show_bug.cgi?id=232162 5 6 Reviewed by Yusuke Suzuki. 7 8 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp: 9 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp: 10 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.cpp: 11 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.h: 12 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.cpp: 13 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.h: 14 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.cpp: 15 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.h: 16 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerInterface.cpp: 17 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerProxy.cpp: 18 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp: 19 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.h: 20 * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementStore.cpp: 21 * NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementConnectionCocoa.mm: 22 * NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementNetworkLoaderCocoa.mm: 23 * NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.h: 24 * NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.mm: 25 * Shared/EntryPointUtilities/Cocoa/Daemon/PCMDaemonConnectionSet.mm: 26 1 27 2021-10-22 Per Arne Vollan <pvollan@apple.com> 2 28 -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp
r284142 r284710 30 30 #include "NetworkSession.h" 31 31 32 namespace WebKit { 33 34 namespace PCM { 32 namespace WebKit::PCM { 35 33 36 34 ClientImpl::ClientImpl(NetworkSession& session, NetworkProcess& networkProcess) … … 60 58 } 61 59 62 } // namespace PCM 63 64 } // namespace WebKit 60 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementConnection.cpp
r284516 r284710 29 29 #include "NetworkSession.h" 30 30 31 namespace WebKit { 32 33 namespace PCM { 31 namespace WebKit::PCM { 34 32 35 33 Connection::Connection(CString&& machServiceName, NetworkSession& networkSession) … … 45 43 #endif 46 44 47 } // namespace PCM 48 49 } // namespace WebKit 45 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.cpp
r283559 r284710 31 31 #endif 32 32 33 namespace WebKit { 34 35 namespace PCM { 33 namespace WebKit::PCM { 36 34 37 35 void DaemonClient::broadcastConsoleMessage(JSC::MessageLevel level, const String& message) … … 59 57 } 60 58 61 } // namespace PCM62 63 59 } // namespace WebKit -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDaemonClient.h
r283595 r284710 30 30 #include <wtf/WeakPtr.h> 31 31 32 namespace WebKit { 33 34 namespace PCM { 32 namespace WebKit::PCM { 35 33 36 34 class DaemonClient : public Client, public CanMakeWeakPtr<DaemonClient> { … … 42 40 }; 43 41 44 } // namespace PCM 45 46 } // namespace WebKit 42 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.cpp
r283316 r284710 35 35 #include <WebCore/SQLiteTransaction.h> 36 36 37 namespace WebKit { 38 39 namespace PCM { 37 namespace WebKit::PCM { 40 38 41 39 constexpr auto setUnattributedPrivateClickMeasurementAsExpiredQuery = "UPDATE UnattributedPrivateClickMeasurement SET timeOfAdClick = -1.0"_s; … … 760 758 } 761 759 762 } // namespace PCM 763 764 } // namespace WebKit 760 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDatabase.h
r283316 r284710 30 30 #include <wtf/ThreadSafeRefCounted.h> 31 31 32 namespace WebKit { 33 34 namespace PCM { 32 namespace WebKit::PCM { 35 33 36 34 struct DebugInfo; … … 105 103 }; 106 104 107 } // namespace PCM 108 109 } // namespace WebKit 105 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.cpp
r281721 r284710 27 27 #include "PrivateClickMeasurementDebugInfo.h" 28 28 29 namespace WebKit { 30 31 namespace PCM { 29 namespace WebKit::PCM { 32 30 33 31 DebugInfo DebugInfo::isolatedCopy() const … … 41 39 } 42 40 43 } // namespace PCM 44 45 } // namespace WebKit 41 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementDebugInfo.h
r281721 r284710 29 29 #include <wtf/text/WTFString.h> 30 30 31 namespace WebKit { 32 33 namespace PCM { 31 namespace WebKit::PCM { 34 32 35 33 struct DebugInfo { … … 47 45 }; 48 46 49 } // namespace PCM50 51 47 } // namespace WebKit -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerInterface.cpp
r284129 r284710 39 39 #endif 40 40 41 namespace WebKit { 42 43 namespace PCM { 41 namespace WebKit::PCM { 44 42 45 43 namespace MessageInfo { … … 313 311 } 314 312 315 } // namespace PCM 316 317 } // namespace WebKit 313 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementManagerProxy.cpp
r284129 r284710 32 32 #include "WebCoreArgumentCoders.h" 33 33 34 namespace WebKit { 35 36 namespace PCM { 34 namespace WebKit::PCM { 37 35 38 36 template<MessageType messageType, typename... Args> … … 166 164 } 167 165 168 } // namespace PCM 169 170 } // namespace WebKit 166 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp
r284051 r284710 31 31 #include <WebCore/ResourceResponse.h> 32 32 33 namespace WebKit { 34 35 namespace PCM { 33 namespace WebKit::PCM { 36 34 37 35 #if !PLATFORM(COCOA) … … 49 47 #endif 50 48 51 } // namespace PCM 52 53 } // namespace WebKit 49 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.h
r284051 r284710 36 36 } 37 37 38 namespace WebKit { 39 40 namespace PCM { 38 namespace WebKit::PCM { 41 39 42 40 class NetworkLoader { … … 48 46 }; 49 47 50 } // namespace PCM 51 52 } // namespace WebKit 48 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementStore.cpp
r283383 r284710 34 34 #include <wtf/SuspendableWorkQueue.h> 35 35 36 namespace WebKit { 37 38 namespace PCM { 36 namespace WebKit::PCM { 39 37 40 38 static Ref<SuspendableWorkQueue> sharedWorkQueue() … … 189 187 } 190 188 191 } // namespace PCM 192 193 } // namespace WebKit 189 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementConnectionCocoa.mm
r284129 r284710 31 31 #import <wtf/NeverDestroyed.h> 32 32 33 namespace WebKit { 34 35 namespace PCM { 33 namespace WebKit::PCM { 36 34 37 35 void Connection::newConnectionWasInitialized() const … … 70 68 } 71 69 72 } // namespace PCM 73 74 } // namespace WebKit 70 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementNetworkLoaderCocoa.mm
r284051 r284710 76 76 @end 77 77 78 namespace WebKit { 79 80 namespace PCM { 78 namespace WebKit::PCM { 81 79 82 80 enum LoadTaskIdentifierType { }; … … 139 137 } 140 138 141 } // namespace PCM 142 143 } // namespace WebKit 139 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.h
r283930 r284710 29 29 #include <wtf/spi/darwin/XPCSPI.h> 30 30 31 namespace WebKit { 32 33 namespace PCM { 31 namespace WebKit::PCM { 34 32 35 33 void addVersionAndEncodedMessageToDictionary(Vector<uint8_t>&&, xpc_object_t); 36 34 37 } // namespace PCM 38 39 } // namespace WebKit 35 } // namespace WebKit::PCM -
trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/cocoa/PrivateClickMeasurementXPCUtilities.mm
r284203 r284710 31 31 #import <wtf/OSObjectPtr.h> 32 32 33 namespace WebKit { 34 35 namespace PCM { 33 namespace WebKit::PCM { 36 34 37 35 void addVersionAndEncodedMessageToDictionary(Vector<uint8_t>&& message, xpc_object_t dictionary) … … 42 40 } 43 41 44 } // namespace PCM45 46 42 } // namespace WebKit -
trunk/Source/WebKit/Shared/EntryPointUtilities/Cocoa/Daemon/PCMDaemonConnectionSet.mm
r284129 r284710 32 32 #import <wtf/RunLoop.h> 33 33 34 namespace WebKit { 35 namespace PCM { 34 namespace WebKit::PCM { 36 35 37 36 DaemonConnectionSet& DaemonConnectionSet::singleton() … … 92 91 } 93 92 94 } // namespace PCM 95 } // namespace WebKit 93 } // namespace WebKit::PCM
Note:
See TracChangeset
for help on using the changeset viewer.