summaryrefslogtreecommitdiff
path: root/Source/WebKit2/UIProcess/WebContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/UIProcess/WebContext.h')
-rw-r--r--Source/WebKit2/UIProcess/WebContext.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit2/UIProcess/WebContext.h b/Source/WebKit2/UIProcess/WebContext.h
index 4e9958d83..84a385653 100644
--- a/Source/WebKit2/UIProcess/WebContext.h
+++ b/Source/WebKit2/UIProcess/WebContext.h
@@ -389,7 +389,7 @@ private:
ProcessModel m_processModel;
unsigned m_webProcessCountLimit; // The limit has no effect when process model is ProcessModelSharedSecondaryProcess.
- Vector<RefPtr<WebProcessProxy>> m_processes;
+ Vector<RefPtr<WebProcessProxy> > m_processes;
bool m_haveInitialEmptyProcess;
WebProcessProxy* m_processWithPageCache;
@@ -424,7 +424,7 @@ private:
// Messages that were posted before any pages were created.
// The client should use initialization messages instead, so that a restarted process would get the same state.
- Vector<pair<String, RefPtr<APIObject>>> m_messagesToInjectedBundlePostedToEmptyContext;
+ Vector<pair<String, RefPtr<APIObject> > > m_messagesToInjectedBundlePostedToEmptyContext;
CacheModel m_cacheModel;
@@ -438,7 +438,7 @@ private:
RefPtr<StorageManager> m_storageManager;
- typedef HashMap<const char*, RefPtr<WebContextSupplement>, PtrHash<const char*>> WebContextSupplementMap;
+ typedef HashMap<const char*, RefPtr<WebContextSupplement>, PtrHash<const char*> > WebContextSupplementMap;
WebContextSupplementMap m_supplements;
#if USE(SOUP)
@@ -472,8 +472,8 @@ private:
RefPtr<NetworkProcessProxy> m_networkProcess;
#endif
- HashMap<uint64_t, RefPtr<DictionaryCallback>> m_dictionaryCallbacks;
- HashMap<uint64_t, RefPtr<StatisticsRequest>> m_statisticsRequests;
+ HashMap<uint64_t, RefPtr<DictionaryCallback> > m_dictionaryCallbacks;
+ HashMap<uint64_t, RefPtr<StatisticsRequest> > m_statisticsRequests;
#if PLATFORM(MAC)
bool m_processSuppressionEnabled;