summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/npapi
diff options
context:
space:
mode:
authorvsevik@chromium.org <vsevik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 16:08:26 +0000
committervsevik@chromium.org <vsevik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-25 16:08:26 +0000
commitd9e08861caa619b94d38f0528b0150ffb35f76a8 (patch)
tree02b79f5bdb775edeae0a07301d8e494620a1c9af /webkit/plugins/npapi
parent78e31bf41148b6079c7b024f004637bea3f6ab85 (diff)
downloadchromium_src-d9e08861caa619b94d38f0528b0150ffb35f76a8.zip
chromium_src-d9e08861caa619b94d38f0528b0150ffb35f76a8.tar.gz
chromium_src-d9e08861caa619b94d38f0528b0150ffb35f76a8.tar.bz2
Remove DevToolsAgent network callbacks as this information is now available through ResourceLoader
BUG=77393 TEST=Open site with embedded foo.swf, observe only one foo.swf resource occurence in DevTools network panel. Review URL: http://codereview.chromium.org/6696108 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/npapi')
-rw-r--r--webkit/plugins/npapi/webplugin_impl.cc36
-rw-r--r--webkit/plugins/npapi/webplugin_impl.h4
2 files changed, 0 insertions, 40 deletions
diff --git a/webkit/plugins/npapi/webplugin_impl.cc b/webkit/plugins/npapi/webplugin_impl.cc
index 33ba9e8..b31ffc3 100644
--- a/webkit/plugins/npapi/webplugin_impl.cc
+++ b/webkit/plugins/npapi/webplugin_impl.cc
@@ -19,7 +19,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCookieJar.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCString.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgent.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebData.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
@@ -52,7 +51,6 @@ using WebKit::WebCString;
using WebKit::WebCursorInfo;
using WebKit::WebData;
using WebKit::WebDataSource;
-using WebKit::WebDevToolsAgent;
using WebKit::WebFrame;
using WebKit::WebHTTPBody;
using WebKit::WebHTTPHeaderVisitor;
@@ -932,12 +930,6 @@ void WebPluginImpl::didReceiveResponse(WebURLLoader* loader,
response_info.last_modified,
request_is_seekable);
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent()) {
- ClientInfo* client_info = GetClientInfoFromLoader(loader);
- if (client_info)
- devtools_agent->didReceiveResponse(client_info->id, response);
- }
-
// Bug http://b/issue?id=925559. The flash plugin would not handle the HTTP
// error codes in the stream header and as a result, was unaware of the
// fate of the HTTP requests issued via NPN_GetURLNotify. Webkit and FF
@@ -964,12 +956,6 @@ void WebPluginImpl::didReceiveData(WebURLLoader* loader,
if (!client)
return;
- // ClientInfo can be removed from clients_ vector by next statements.
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent()) {
- ClientInfo* client_info = GetClientInfoFromLoader(loader);
- if (client_info)
- devtools_agent->didReceiveData(client_info->id, length);
- }
MultiPartResponseHandlerMap::iterator index =
multi_part_response_map_.find(client);
if (index != multi_part_response_map_.end()) {
@@ -999,9 +985,6 @@ void WebPluginImpl::didFinishLoading(WebURLLoader* loader, double finishTime) {
// It is not safe to access this structure after that.
client_info->client = NULL;
resource_client->DidFinishLoading();
-
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent())
- devtools_agent->didFinishLoading(client_info->id);
}
}
@@ -1015,9 +998,6 @@ void WebPluginImpl::didFail(WebURLLoader* loader,
// It is not safe to access this structure after that.
client_info->client = NULL;
resource_client->DidFail();
-
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent())
- devtools_agent->didFailLoading(client_info->id, error);
}
}
@@ -1173,9 +1153,6 @@ bool WebPluginImpl::InitiateHTTPRequest(unsigned long resource_id,
SetReferrer(&info.request, referrer_flag);
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent())
- devtools_agent->willSendRequest(resource_id, webframe_, info.request);
-
info.loader.reset(webframe_->createAssociatedURLLoader());
if (!info.loader.get())
return false;
@@ -1232,10 +1209,6 @@ void WebPluginImpl::SetDeferResourceLoading(unsigned long resource_id,
client_info.loader->cancel();
clients_.erase(client_index++);
resource_client->DidFail();
-
- // Report that resource loading finished.
- if (WebDevToolsAgent* devtools_agent = GetDevToolsAgent())
- devtools_agent->didFinishLoading(resource_id);
}
break;
}
@@ -1366,14 +1339,5 @@ void WebPluginImpl::SetReferrer(WebKit::WebURLRequest* request,
}
}
-WebDevToolsAgent* WebPluginImpl::GetDevToolsAgent() {
- if (!webframe_)
- return NULL;
- WebView* view = webframe_->view();
- if (!view)
- return NULL;
- return view->devToolsAgent();
-}
-
} // namespace npapi
} // namespace webkit
diff --git a/webkit/plugins/npapi/webplugin_impl.h b/webkit/plugins/npapi/webplugin_impl.h
index a3c9b32..799344e 100644
--- a/webkit/plugins/npapi/webplugin_impl.h
+++ b/webkit/plugins/npapi/webplugin_impl.h
@@ -26,7 +26,6 @@
class WebViewDelegate;
namespace WebKit {
-class WebDevToolsAgent;
class WebFrame;
class WebPluginContainer;
class WebURLResponse;
@@ -269,9 +268,6 @@ class WebPluginImpl : public WebPlugin,
// Helper function to set the referrer on the request passed in.
void SetReferrer(WebKit::WebURLRequest* request, Referrer referrer_flag);
- // Returns DevToolsAgent for the frame or 0.
- WebKit::WebDevToolsAgent* GetDevToolsAgent();
-
// Check for invalid chars like @, ;, \ before the first / (in path).
bool IsValidUrl(const GURL& url, Referrer referrer_flag);