summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/resource_dispatcher.h7
-rw-r--r--chrome/common/temp_scaffolding_stubs.h2
2 files changed, 5 insertions, 4 deletions
diff --git a/chrome/common/resource_dispatcher.h b/chrome/common/resource_dispatcher.h
index 32e054b..a6b73d5 100644
--- a/chrome/common/resource_dispatcher.h
+++ b/chrome/common/resource_dispatcher.h
@@ -7,7 +7,9 @@
#ifndef CHROME_COMMON_RESOURCE_DISPATCHER_H__
#define CHROME_COMMON_RESOURCE_DISPATCHER_H__
+#include <deque>
#include <queue>
+#include <string>
#include "base/hash_tables.h"
#include "base/shared_memory.h"
@@ -17,7 +19,6 @@
#include "webkit/glue/resource_loader_bridge.h"
struct ResourceResponseHead;
-struct ViewMsg_Resource_ResponseHead;
// Uncomment this to disable loading resources via the parent process. This
// may be useful for debugging purposes.
@@ -29,7 +30,7 @@ struct ViewMsg_Resource_ResponseHead;
// processes.
class ResourceDispatcher : public base::RefCounted<ResourceDispatcher> {
public:
- ResourceDispatcher(IPC::Message::Sender* sender);
+ explicit ResourceDispatcher(IPC::Message::Sender* sender);
~ResourceDispatcher();
// Called to possibly handle the incoming IPC message. Returns true if
@@ -99,7 +100,7 @@ class ResourceDispatcher : public base::RefCounted<ResourceDispatcher> {
bool mixed_content;
bool is_deferred;
};
- typedef base::hash_map<int,PendingRequestInfo> PendingRequestList;
+ typedef base::hash_map<int, PendingRequestInfo> PendingRequestList;
// Message response handlers, called by the message handler for this process.
void OnUploadProgress(int request_id, int64 position, int64 size);
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h
index ca0fbf6..8b72a7e 100644
--- a/chrome/common/temp_scaffolding_stubs.h
+++ b/chrome/common/temp_scaffolding_stubs.h
@@ -75,6 +75,7 @@ class URLRequestContext;
class UserScriptMaster;
class VisitedLinkMaster;
class WebContents;
+struct WebPluginGeometry;
class WebPreferences;
namespace IPC {
@@ -430,7 +431,6 @@ class IconManager {
};
struct ViewHostMsg_DidPrintPage_Params;
-struct ViewHostMsg_FrameNavigate_Params;
class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> {
public: