diff options
Diffstat (limited to 'content/common')
3 files changed, 2 insertions, 8 deletions
diff --git a/content/common/browser_plugin/browser_plugin_constants.cc b/content/common/browser_plugin/browser_plugin_constants.cc index 84214fc5..2ecb072 100644 --- a/content/common/browser_plugin/browser_plugin_constants.cc +++ b/content/common/browser_plugin/browser_plugin_constants.cc @@ -14,8 +14,7 @@ const char kMethodCanGoBack[] = "canGoBack"; const char kMethodCanGoForward[] = "canGoForward"; const char kMethodForward[] = "forward"; const char kMethodGetInstanceId[] = "getInstanceId"; -const char kMethodGetProcessId[] = "getProcessId"; -const char kMethodGetRouteId[] = "getRouteId"; +const char kMethodGetGuestInstanceId[] = "getGuestInstanceId"; const char kMethodGo[] = "go"; const char kMethodReload[] = "reload"; const char kMethodStop[] = "stop"; diff --git a/content/common/browser_plugin/browser_plugin_constants.h b/content/common/browser_plugin/browser_plugin_constants.h index fb063bc..e834229 100644 --- a/content/common/browser_plugin/browser_plugin_constants.h +++ b/content/common/browser_plugin/browser_plugin_constants.h @@ -14,9 +14,8 @@ extern const char kMethodBack[]; extern const char kMethodCanGoBack[]; extern const char kMethodCanGoForward[]; extern const char kMethodForward[]; +extern const char kMethodGetGuestInstanceId[]; extern const char kMethodGetInstanceId[]; -extern const char kMethodGetProcessId[]; -extern const char kMethodGetRouteId[]; extern const char kMethodGo[]; extern const char kMethodReload[]; extern const char kMethodStop[]; diff --git a/content/common/browser_plugin/browser_plugin_messages.h b/content/common/browser_plugin/browser_plugin_messages.h index b945bc5..91c777d 100644 --- a/content/common/browser_plugin/browser_plugin_messages.h +++ b/content/common/browser_plugin/browser_plugin_messages.h @@ -85,10 +85,6 @@ IPC_STRUCT_BEGIN(BrowserPluginMsg_LoadCommit_Params) IPC_STRUCT_MEMBER(GURL, url) // Indicates whether the navigation was on the top-level frame. IPC_STRUCT_MEMBER(bool, is_top_level) - // The browser's process ID for the guest. - IPC_STRUCT_MEMBER(int, process_id) - // The browser's routing ID for the guest's RenderView. - IPC_STRUCT_MEMBER(int, route_id) // The index of the current navigation entry after this navigation was // committed. IPC_STRUCT_MEMBER(int, current_entry_index) |