diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 04:53:19 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 04:53:19 +0000 |
commit | 65a50b2749e8d90f8a94e8d42cc31c93b9f69c5f (patch) | |
tree | 557cb67825a9383799dca591185ffb965a063870 /content/common/browser_plugin | |
parent | 6c8c69671bfdf15bce68a2e760d8d95ee77e0aa9 (diff) | |
download | chromium_src-65a50b2749e8d90f8a94e8d42cc31c93b9f69c5f.zip chromium_src-65a50b2749e8d90f8a94e8d42cc31c93b9f69c5f.tar.gz chromium_src-65a50b2749e8d90f8a94e8d42cc31c93b9f69c5f.tar.bz2 |
<webview>: Move loadstart and loadredirect from content to chrome
BUG=166165
Test=WebViewTest.Shim_TestLoadStartLoadRedirect
Review URL: https://chromiumcodereview.appspot.com/18363002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209894 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/browser_plugin')
3 files changed, 0 insertions, 21 deletions
diff --git a/content/common/browser_plugin/browser_plugin_constants.cc b/content/common/browser_plugin/browser_plugin_constants.cc index 3637ecc..2a55dc6 100644 --- a/content/common/browser_plugin/browser_plugin_constants.cc +++ b/content/common/browser_plugin/browser_plugin_constants.cc @@ -45,7 +45,6 @@ const char kEventClose[] = "close"; const char kEventConsoleMessage[] = "consolemessage"; const char kEventExit[] = "exit"; const char kEventLoadAbort[] = "loadabort"; -const char kEventLoadRedirect[] = "loadredirect"; const char kEventLoadStart[] = "loadstart"; const char kEventNewWindow[] = "newwindow"; const char kEventRequestPermission[] = "permissionrequest"; @@ -62,10 +61,8 @@ const char kLevel[] = "level"; const char kLine[] = "line"; const char kMessage[] = "message"; const char kName[] = "name"; -const char kNewURL[] = "newUrl"; const char kNewHeight[] = "newHeight"; const char kNewWidth[] = "newWidth"; -const char kOldURL[] = "oldUrl"; const char kOldHeight[] = "oldHeight"; const char kOldWidth[] = "oldWidth"; const char kPermission[] = "permission"; diff --git a/content/common/browser_plugin/browser_plugin_constants.h b/content/common/browser_plugin/browser_plugin_constants.h index d2ec0b2..3fff677 100644 --- a/content/common/browser_plugin/browser_plugin_constants.h +++ b/content/common/browser_plugin/browser_plugin_constants.h @@ -46,7 +46,6 @@ extern const char kEventClose[]; extern const char kEventConsoleMessage[]; extern const char kEventExit[]; extern const char kEventLoadAbort[]; -extern const char kEventLoadRedirect[]; extern const char kEventLoadStart[]; extern const char kEventNewWindow[]; extern const char kEventRequestPermission[]; @@ -63,10 +62,8 @@ extern const char kLevel[]; extern const char kLine[]; extern const char kMessage[]; extern const char kName[]; -extern const char kNewURL[]; extern const char kNewHeight[]; extern const char kNewWidth[]; -extern const char kOldURL[]; extern const char kOldHeight[]; extern const char kOldWidth[]; extern const char kPermission[]; diff --git a/content/common/browser_plugin/browser_plugin_messages.h b/content/common/browser_plugin/browser_plugin_messages.h index cb6cc0d..4f3541d 100644 --- a/content/common/browser_plugin/browser_plugin_messages.h +++ b/content/common/browser_plugin/browser_plugin_messages.h @@ -332,13 +332,6 @@ IPC_MESSAGE_CONTROL2(BrowserPluginMsg_GuestContentWindowReady, int /* instance_id */, int /* source_routing_id */) -// When the guest begins to load a page, the browser process informs the -// embedder through the BrowserPluginMsg_LoadStart message. -IPC_MESSAGE_CONTROL3(BrowserPluginMsg_LoadStart, - int /* instance_id */, - GURL /* url */, - bool /* is_top_level */) - // If the guest fails to commit a page load then it will inform the // embedder through the BrowserPluginMsg_LoadAbort. A description // of the error will be stored in |type|. The list of known error @@ -349,14 +342,6 @@ IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadAbort, bool /* is_top_level */, std::string /* type */) -// When the guest redirects a navigation, the browser process informs the -// embedder through the BrowserPluginMsg_LoadRedirect message. -IPC_MESSAGE_CONTROL4(BrowserPluginMsg_LoadRedirect, - int /* instance_id */, - GURL /* old_url */, - GURL /* new_url */, - bool /* is_top_level */) - // When the guest commits a navigation, the browser process informs // the embedder through the BrowserPluginMsg_LoadCommit message. IPC_MESSAGE_CONTROL2(BrowserPluginMsg_LoadCommit, |