Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1816)

Unified Diff: content/common/resource_dispatcher.h

Issue 10825274: Clean-up inline members of nested classes (content/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/common/resource_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/resource_dispatcher.h
diff --git a/content/common/resource_dispatcher.h b/content/common/resource_dispatcher.h
index d3decbec48b002d2ce6a7cf6de3ba9f389108bd6..79d955ba5451deecadedfc6da64c2715db957fde 100644
--- a/content/common/resource_dispatcher.h
+++ b/content/common/resource_dispatcher.h
@@ -72,23 +72,13 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
typedef std::deque<IPC::Message*> MessageQueue;
struct PendingRequestInfo {
- PendingRequestInfo()
- : peer(NULL),
- resource_type(ResourceType::SUB_RESOURCE),
- is_deferred(false) {
- }
+ PendingRequestInfo();
PendingRequestInfo(webkit_glue::ResourceLoaderBridge::Peer* peer,
ResourceType::Type resource_type,
- const GURL& request_url)
- : peer(peer),
- resource_type(resource_type),
- is_deferred(false),
- url(request_url),
- request_start(base::TimeTicks::Now()) {
- }
-
- ~PendingRequestInfo() {}
+ const GURL& request_url);
+
+ ~PendingRequestInfo();
webkit_glue::ResourceLoaderBridge::Peer* peer;
ResourceType::Type resource_type;
« no previous file with comments | « no previous file | content/common/resource_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698