2 * Copyright (C) 2010 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
27 #include "WebProcessCreationParameters.h"
29 #include "ArgumentCoders.h"
33 WebProcessCreationParameters::WebProcessCreationParameters()
34 : shouldTrackVisitedLinks(false)
35 , shouldAlwaysUseComplexTextCodePath(false)
36 , defaultRequestTimeoutInterval(INT_MAX)
38 , nsURLCacheMemoryCapacity(0)
39 , nsURLCacheDiskCapacity(0)
41 , shouldPaintNativeControls(false)
46 void WebProcessCreationParameters::encode(CoreIPC::ArgumentEncoder* encoder) const
48 encoder->encode(injectedBundlePath);
49 encoder->encode(injectedBundlePathExtensionHandle);
50 encoder->encode(applicationCacheDirectory);
51 encoder->encode(applicationCacheDirectoryExtensionHandle);
52 encoder->encode(databaseDirectory);
53 encoder->encode(localStorageDirectory);
54 encoder->encode(urlSchemesRegistererdAsEmptyDocument);
55 encoder->encode(urlSchemesRegisteredAsSecure);
56 encoder->encode(urlSchemesForWhichDomainRelaxationIsForbidden);
57 encoder->encode(mimeTypesWithCustomRepresentation);
58 encoder->encodeEnum(cacheModel);
59 encoder->encode(shouldTrackVisitedLinks);
60 encoder->encode(shouldAlwaysUseComplexTextCodePath);
61 encoder->encode(iconDatabaseEnabled);
62 encoder->encode(languageCode);
63 encoder->encode(textCheckerState);
64 encoder->encode(defaultRequestTimeoutInterval);
65 #if USE(CFURLSTORAGESESSIONS)
66 encoder->encode(uiProcessBundleIdentifier);
69 encoder->encode(parentProcessName);
70 encoder->encode(presenterApplicationPid);
71 encoder->encode(nsURLCachePath);
72 encoder->encode(nsURLCacheMemoryCapacity);
73 encoder->encode(nsURLCacheDiskCapacity);
74 encoder->encode(acceleratedCompositingPort);
75 encoder->encode(uiProcessBundleResourcePath);
77 encoder->encode(shouldPaintNativeControls);
78 encoder->encode(cfURLCachePath);
79 encoder->encode(cfURLCacheDiskCapacity);
80 encoder->encode(cfURLCacheMemoryCapacity);
81 encoder->encode(initialHTTPCookieAcceptPolicy);
85 bool WebProcessCreationParameters::decode(CoreIPC::ArgumentDecoder* decoder, WebProcessCreationParameters& parameters)
87 if (!decoder->decode(parameters.injectedBundlePath))
89 if (!decoder->decode(parameters.injectedBundlePathExtensionHandle))
91 if (!decoder->decode(parameters.applicationCacheDirectory))
93 if (!decoder->decode(parameters.applicationCacheDirectoryExtensionHandle))
95 if (!decoder->decode(parameters.databaseDirectory))
97 if (!decoder->decode(parameters.localStorageDirectory))
99 if (!decoder->decode(parameters.urlSchemesRegistererdAsEmptyDocument))
101 if (!decoder->decode(parameters.urlSchemesRegisteredAsSecure))
103 if (!decoder->decode(parameters.urlSchemesForWhichDomainRelaxationIsForbidden))
105 if (!decoder->decode(parameters.mimeTypesWithCustomRepresentation))
107 if (!decoder->decodeEnum(parameters.cacheModel))
109 if (!decoder->decode(parameters.shouldTrackVisitedLinks))
111 if (!decoder->decode(parameters.shouldAlwaysUseComplexTextCodePath))
113 if (!decoder->decode(parameters.iconDatabaseEnabled))
115 if (!decoder->decode(parameters.languageCode))
117 if (!decoder->decode(parameters.textCheckerState))
119 if (!decoder->decode(parameters.defaultRequestTimeoutInterval))
121 #if USE(CFURLSTORAGESESSIONS)
122 if (!decoder->decode(parameters.uiProcessBundleIdentifier))
127 if (!decoder->decode(parameters.parentProcessName))
129 if (!decoder->decode(parameters.presenterApplicationPid))
131 if (!decoder->decode(parameters.nsURLCachePath))
133 if (!decoder->decode(parameters.nsURLCacheMemoryCapacity))
135 if (!decoder->decode(parameters.nsURLCacheDiskCapacity))
137 if (!decoder->decode(parameters.acceleratedCompositingPort))
139 if (!decoder->decode(parameters.uiProcessBundleResourcePath))
142 if (!decoder->decode(parameters.shouldPaintNativeControls))
144 if (!decoder->decode(parameters.cfURLCachePath))
146 if (!decoder->decode(parameters.cfURLCacheDiskCapacity))
148 if (!decoder->decode(parameters.cfURLCacheMemoryCapacity))
150 if (!decoder->decode(parameters.initialHTTPCookieAcceptPolicy))
157 } // namespace WebKit