diff options
Diffstat (limited to 'Source/WebKit2/UIProcess/WebIconDatabase.cpp')
| -rw-r--r-- | Source/WebKit2/UIProcess/WebIconDatabase.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebKit2/UIProcess/WebIconDatabase.cpp b/Source/WebKit2/UIProcess/WebIconDatabase.cpp index c0c70617b..41c2617bf 100644 --- a/Source/WebKit2/UIProcess/WebIconDatabase.cpp +++ b/Source/WebKit2/UIProcess/WebIconDatabase.cpp @@ -161,7 +161,7 @@ void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t          return;      if (!m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || iconURL.isEmpty()) { -        // FIXME (Multi-WebProcess): We need to know which connection to send this message to. +        // FIXME (Multi-WebProcess): <rdar://problem/12240223> We need to know which connection to send this message to.          m_webContext->sendToAllProcesses(Messages::WebIconDatabaseProxy::ReceivedIconLoadDecision(static_cast<int>(IconLoadNo), callbackID));          return;      } @@ -176,7 +176,7 @@ void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t          return;          } -    // FIXME (Multi-WebProcess): We need to know which connection to send this message to. +    // FIXME (Multi-WebProcess): <rdar://problem/12240223> We need to know which connection to send this message to.      m_webContext->sendToAllProcesses(Messages::WebIconDatabaseProxy::ReceivedIconLoadDecision((int)decision, callbackID));  } @@ -269,7 +269,7 @@ void WebIconDatabase::didFinishURLImport()          // Decisions should never be unknown after the inital import is complete          ASSERT(decision != IconLoadUnknown); -        // FIXME (Multi-WebProcess): We need to know which connection to send this message to. +        // FIXME (Multi-WebProcess): <rdar://problem/12240223> We need to know which connection to send this message to.          m_webContext->sendToAllProcesses(Messages::WebIconDatabaseProxy::ReceivedIconLoadDecision(static_cast<int>(decision), i->first));      }  | 
