automation_provider.cc

IPC_MESSAGE_HANDLER
で探すとほかにもいくつかファイルがひっかかる。

void AutomationProvider::OnMessageReceived(const IPC::Message& message) {
  IPC_BEGIN_MESSAGE_MAP(AutomationProvider, message)
    IPC_MESSAGE_HANDLER(AutomationMsg_CloseBrowserRequest, CloseBrowser)
    IPC_MESSAGE_HANDLER(AutomationMsg_ActivateTabRequest, ActivateTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_ActiveTabIndexRequest, GetActiveTabIndex)
    IPC_MESSAGE_HANDLER(AutomationMsg_AppendTabRequest, AppendTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_CloseTabRequest, CloseTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_GetCookiesRequest, GetCookies)
    IPC_MESSAGE_HANDLER(AutomationMsg_SetCookieRequest, SetCookie)
    IPC_MESSAGE_HANDLER(AutomationMsg_NavigateToURLRequest, NavigateToURL)
    IPC_MESSAGE_HANDLER(AutomationMsg_NavigationAsyncRequest, NavigationAsync)
    IPC_MESSAGE_HANDLER(AutomationMsg_GoBackRequest, GoBack)
    IPC_MESSAGE_HANDLER(AutomationMsg_GoForwardRequest, GoForward)
    IPC_MESSAGE_HANDLER(AutomationMsg_ReloadRequest, Reload)
    IPC_MESSAGE_HANDLER(AutomationMsg_SetAuthRequest, SetAuth)
    IPC_MESSAGE_HANDLER(AutomationMsg_CancelAuthRequest, CancelAuth)
    IPC_MESSAGE_HANDLER(AutomationMsg_NeedsAuthRequest, NeedsAuth)
    IPC_MESSAGE_HANDLER(AutomationMsg_RedirectsFromRequest, GetRedirectsFrom)
    IPC_MESSAGE_HANDLER(AutomationMsg_BrowserWindowCountRequest,
                        GetBrowserWindowCount)
    IPC_MESSAGE_HANDLER(AutomationMsg_BrowserWindowRequest, GetBrowserWindow)
    IPC_MESSAGE_HANDLER(AutomationMsg_LastActiveBrowserWindowRequest,
                        GetLastActiveBrowserWindow)
    IPC_MESSAGE_HANDLER(AutomationMsg_ActiveWindowRequest, GetActiveWindow)
    IPC_MESSAGE_HANDLER(AutomationMsg_IsWindowActiveRequest, IsWindowActive)
    IPC_MESSAGE_HANDLER(AutomationMsg_ActivateWindow, ActivateWindow);
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowHWNDRequest, GetWindowHWND)
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowExecuteCommandRequest,
                        ExecuteBrowserCommand)
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowViewBoundsRequest,
                        WindowGetViewBounds)
    IPC_MESSAGE_HANDLER(AutomationMsg_SetWindowVisibleRequest, SetWindowVisible)
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowClickRequest, WindowSimulateClick)
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowKeyPressRequest,
                        WindowSimulateKeyPress)
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowDragRequest, WindowSimulateDrag)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabCountRequest, GetTabCount)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabRequest, GetTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabHWNDRequest, GetTabHWND)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabProcessIDRequest, GetTabProcessID)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabTitleRequest, GetTabTitle)
    IPC_MESSAGE_HANDLER(AutomationMsg_TabURLRequest, GetTabURL)
    IPC_MESSAGE_HANDLER(AutomationMsg_ShelfVisibilityRequest,
                        GetShelfVisibility)
    IPC_MESSAGE_HANDLER(AutomationMsg_HandleUnused, HandleUnused)
    IPC_MESSAGE_HANDLER(AutomationMsg_ApplyAcceleratorRequest, ApplyAccelerator)
    IPC_MESSAGE_HANDLER(AutomationMsg_DomOperationRequest, ExecuteJavascript)
    IPC_MESSAGE_HANDLER(AutomationMsg_ConstrainedWindowCountRequest,
                        GetConstrainedWindowCount)
    IPC_MESSAGE_HANDLER(AutomationMsg_ConstrainedWindowRequest,
                        GetConstrainedWindow)
    IPC_MESSAGE_HANDLER(AutomationMsg_ConstrainedTitleRequest,
                        GetConstrainedTitle)
    IPC_MESSAGE_HANDLER(AutomationMsg_FindInPageRequest,
                        HandleFindInPageRequest)
    IPC_MESSAGE_HANDLER(AutomationMsg_GetFocusedViewIDRequest, GetFocusedViewID)
    IPC_MESSAGE_HANDLER(AutomationMsg_InspectElementRequest,
                        HandleInspectElementRequest)
    IPC_MESSAGE_HANDLER(AutomationMsg_SetFilteredInet,
                        SetFilteredInet);
    IPC_MESSAGE_HANDLER(AutomationMsg_DownloadDirectoryRequest,
                        GetDownloadDirectory);
    IPC_MESSAGE_HANDLER(AutomationMsg_OpenNewBrowserWindow,
                        OpenNewBrowserWindow);
    IPC_MESSAGE_HANDLER(AutomationMsg_WindowForBrowserRequest,
                        GetWindowForBrowser);
    IPC_MESSAGE_HANDLER(AutomationMsg_AutocompleteEditForBrowserRequest,
                        GetAutocompleteEditForBrowser);
    IPC_MESSAGE_HANDLER(AutomationMsg_BrowserForWindowRequest,
                        GetBrowserForWindow);
    IPC_MESSAGE_HANDLER(AutomationMsg_CreateExternalTab, CreateExternalTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_NavigateInExternalTabRequest,
                        NavigateInExternalTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_ShowInterstitialPageRequest,
                        ShowInterstitialPage);
    IPC_MESSAGE_HANDLER(AutomationMsg_HideInterstitialPageRequest,
                        HideInterstitialPage);
    IPC_MESSAGE_HANDLER(AutomationMsg_SetAcceleratorsForTab,
                        SetAcceleratorsForTab)
    IPC_MESSAGE_HANDLER(AutomationMsg_ProcessUnhandledAccelerator,
                        ProcessUnhandledAccelerator)
    IPC_MESSAGE_HANDLER(AutomationMsg_WaitForTabToBeRestored,
                        WaitForTabToBeRestored)
    IPC_MESSAGE_HANDLER(AutomationMsg_GetSecurityState,
                        GetSecurityState)
    IPC_MESSAGE_HANDLER(AutomationMsg_GetPageType,
                        GetPageType)
    IPC_MESSAGE_HANDLER(AutomationMsg_ActionOnSSLBlockingPage,
                        ActionOnSSLBlockingPage)
    IPC_MESSAGE_HANDLER(AutomationMsg_BringBrowserToFront, BringBrowserToFront)
    IPC_MESSAGE_HANDLER(AutomationMsg_IsPageMenuCommandEnabled,
                        IsPageMenuCommandEnabled)
    IPC_MESSAGE_HANDLER(AutomationMsg_PrintNowRequest, PrintNow)
    IPC_MESSAGE_HANDLER(AutomationMsg_SavePageRequest, SavePage)
    IPC_MESSAGE_HANDLER(AutomationMsg_AutocompleteEditGetTextRequest,
                        GetAutocompleteEditText)
    IPC_MESSAGE_HANDLER(AutomationMsg_AutocompleteEditSetTextRequest,
                        SetAutocompleteEditText)
    IPC_MESSAGE_HANDLER(AutomationMsg_AutocompleteEditIsQueryInProgressRequest,
                        AutocompleteEditIsQueryInProgress)
    IPC_MESSAGE_HANDLER(AutomationMsg_AutocompleteEditGetMatchesRequest,
                        AutocompleteEditGetMatches)
    IPC_MESSAGE_HANDLER(AutomationMsg_ConstrainedWindowBoundsRequest,
                        GetConstrainedWindowBounds)
    IPC_MESSAGE_HANDLER(AutomationMsg_OpenFindInPageRequest,
                        HandleOpenFindInPageRequest)
    IPC_MESSAGE_HANDLER(AutomationMsg_HandleMessageFromExternalHost,
                        OnMessageFromExternalHost)
    IPC_MESSAGE_HANDLER(AutomationMsg_FindRequest,
                        HandleFindRequest)
    IPC_MESSAGE_HANDLER(AutomationMsg_FindWindowVisibilityRequest,
                        GetFindWindowVisibility)
    IPC_MESSAGE_HANDLER(AutomationMsg_FindWindowLocationRequest,
                        HandleFindWindowLocationRequest)
  IPC_END_MESSAGE_MAP()
}