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

Side by Side Diff: chrome/browser/renderer_host/chrome_render_message_filter.cc

Issue 11820038: Update some #includes in chrome/browser/renderer_host for headers in the new Platform directory (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "chrome/browser/renderer_host/chrome_render_message_filter.h" 5 #include "chrome/browser/renderer_host/chrome_render_message_filter.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/metrics/histogram.h" 10 #include "base/metrics/histogram.h"
(...skipping 22 matching lines...) Expand all
33 #include "chrome/common/extensions/extension_messages.h" 33 #include "chrome/common/extensions/extension_messages.h"
34 #include "chrome/common/extensions/message_bundle.h" 34 #include "chrome/common/extensions/message_bundle.h"
35 #include "chrome/common/render_messages.h" 35 #include "chrome/common/render_messages.h"
36 #include "chrome/common/url_constants.h" 36 #include "chrome/common/url_constants.h"
37 #include "content/public/browser/notification_service.h" 37 #include "content/public/browser/notification_service.h"
38 #include "content/public/browser/render_process_host.h" 38 #include "content/public/browser/render_process_host.h"
39 #include "content/public/browser/resource_dispatcher_host.h" 39 #include "content/public/browser/resource_dispatcher_host.h"
40 #include "content/public/common/process_type.h" 40 #include "content/public/common/process_type.h"
41 #include "extensions/common/constants.h" 41 #include "extensions/common/constants.h"
42 #include "googleurl/src/gurl.h" 42 #include "googleurl/src/gurl.h"
43 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" 43 #include "third_party/WebKit/Source/Platform/chromium/public/WebString.h"
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h"
45 #include "webkit/plugins/npapi/plugin_list.h" 45 #include "webkit/plugins/npapi/plugin_list.h"
46 46
47 #if defined(USE_TCMALLOC) 47 #if defined(USE_TCMALLOC)
48 #include "chrome/browser/browser_about_handler.h" 48 #include "chrome/browser/browser_about_handler.h"
49 #endif 49 #endif
50 50
51 using content::BrowserThread; 51 using content::BrowserThread;
52 using extensions::APIPermission; 52 using extensions::APIPermission;
53 using WebKit::WebCache; 53 using WebKit::WebCache;
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 617
618 void ChromeRenderMessageFilter::OnSetCookie(const IPC::Message& message, 618 void ChromeRenderMessageFilter::OnSetCookie(const IPC::Message& message,
619 const GURL& url, 619 const GURL& url,
620 const GURL& first_party_for_cookies, 620 const GURL& first_party_for_cookies,
621 const std::string& cookie) { 621 const std::string& cookie) {
622 #if defined(ENABLE_AUTOMATION) 622 #if defined(ENABLE_AUTOMATION)
623 AutomationResourceMessageFilter::SetCookiesForUrl( 623 AutomationResourceMessageFilter::SetCookiesForUrl(
624 render_process_id_, message.routing_id(), url, cookie); 624 render_process_id_, message.routing_id(), url, cookie);
625 #endif 625 #endif
626 } 626 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698