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

Side by Side Diff: chrome/browser/renderer_host/resource_message_filter.h

Issue 155905: Separates ipc code from common (http://crbug.com/16829) (Closed)
Patch Set: Fixes reference to 'common_message_traits' it's actually 'common_param_traits' Created 11 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_
6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/clipboard.h" 11 #include "base/clipboard.h"
12 #include "base/file_path.h" 12 #include "base/file_path.h"
13 #include "base/gfx/rect.h" 13 #include "base/gfx/rect.h"
14 #include "base/gfx/native_widget_types.h" 14 #include "base/gfx/native_widget_types.h"
15 #include "base/ref_counted.h" 15 #include "base/ref_counted.h"
16 #include "base/shared_memory.h" 16 #include "base/shared_memory.h"
17 #include "base/string16.h" 17 #include "base/string16.h"
18 #include "build/build_config.h" 18 #include "build/build_config.h"
19 #include "chrome/browser/net/resolve_proxy_msg_helper.h" 19 #include "chrome/browser/net/resolve_proxy_msg_helper.h"
20 #include "chrome/browser/renderer_host/render_widget_helper.h" 20 #include "chrome/browser/renderer_host/render_widget_helper.h"
21 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" 21 #include "chrome/browser/renderer_host/resource_dispatcher_host.h"
22 #include "chrome/common/ipc_channel_proxy.h"
23 #include "chrome/common/modal_dialog_event.h" 22 #include "chrome/common/modal_dialog_event.h"
24 #include "chrome/common/notification_registrar.h" 23 #include "chrome/common/notification_registrar.h"
25 #include "chrome/common/transport_dib.h" 24 #include "chrome/common/transport_dib.h"
25 #include "ipc/ipc_channel_proxy.h"
26 #include "webkit/api/public/WebCache.h" 26 #include "webkit/api/public/WebCache.h"
27 27
28 #if defined(OS_WIN) 28 #if defined(OS_WIN)
29 #include <windows.h> 29 #include <windows.h>
30 #endif 30 #endif
31 31
32 class AppCacheDispatcherHost; 32 class AppCacheDispatcherHost;
33 class AudioRendererHost; 33 class AudioRendererHost;
34 class Clipboard; 34 class Clipboard;
35 class DOMStorageDispatcherHost; 35 class DOMStorageDispatcherHost;
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 // Handles DOM Storage related messages. 310 // Handles DOM Storage related messages.
311 scoped_refptr<DOMStorageDispatcherHost> dom_storage_dispatcher_host_; 311 scoped_refptr<DOMStorageDispatcherHost> dom_storage_dispatcher_host_;
312 312
313 // Whether this process is used for off the record tabs. 313 // Whether this process is used for off the record tabs.
314 bool off_the_record_; 314 bool off_the_record_;
315 315
316 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter); 316 DISALLOW_COPY_AND_ASSIGN(ResourceMessageFilter);
317 }; 317 };
318 318
319 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_ 319 #endif // CHROME_BROWSER_RENDERER_HOST_RESOURCE_MSG_FILTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/resource_dispatcher_host.h ('k') | chrome/browser/sandbox_policy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698