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

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

Issue 10698057: Remove Message::Sender and Channel::Listener typedefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ipc/ipc_channel.h » ('j') | 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 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 10
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 net::AuthChallengeInfo* auth_info, net::URLRequest* request) OVERRIDE; 70 net::AuthChallengeInfo* auth_info, net::URLRequest* request) OVERRIDE;
71 virtual void HandleExternalProtocol(const GURL& url, 71 virtual void HandleExternalProtocol(const GURL& url,
72 int child_id, 72 int child_id,
73 int route_id) OVERRIDE; 73 int route_id) OVERRIDE;
74 virtual bool ShouldForceDownloadResource( 74 virtual bool ShouldForceDownloadResource(
75 const GURL& url, const std::string& mime_type) OVERRIDE; 75 const GURL& url, const std::string& mime_type) OVERRIDE;
76 virtual void OnResponseStarted( 76 virtual void OnResponseStarted(
77 net::URLRequest* request, 77 net::URLRequest* request,
78 content::ResourceContext* resource_context, 78 content::ResourceContext* resource_context,
79 content::ResourceResponse* response, 79 content::ResourceResponse* response,
80 IPC::Message::Sender* sender) OVERRIDE; 80 IPC::Sender* sender) OVERRIDE;
81 virtual void OnRequestRedirected( 81 virtual void OnRequestRedirected(
82 net::URLRequest* request, 82 net::URLRequest* request,
83 content::ResourceContext* resource_context, 83 content::ResourceContext* resource_context,
84 content::ResourceResponse* response) OVERRIDE; 84 content::ResourceResponse* response) OVERRIDE;
85 85
86 // base::FieldTrialList::Observer implementation. 86 // base::FieldTrialList::Observer implementation.
87 // This will add the variation ID associated with |trial_name| and 87 // This will add the variation ID associated with |trial_name| and
88 // |group_name| to the variation ID cache. 88 // |group_name| to the variation ID cache.
89 virtual void OnFieldTrialGroupFinalized( 89 virtual void OnFieldTrialGroupFinalized(
90 const std::string& trial_name, 90 const std::string& trial_name,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // This consists of a list of valid IDs, and the actual transmitted header. 128 // This consists of a list of valid IDs, and the actual transmitted header.
129 // Note that since this cache is both initialized and accessed from the IO 129 // Note that since this cache is both initialized and accessed from the IO
130 // thread, we do not need to synchronize its uses. 130 // thread, we do not need to synchronize its uses.
131 std::set<chrome_variations::ID> variation_ids_set_; 131 std::set<chrome_variations::ID> variation_ids_set_;
132 std::string variation_ids_header_; 132 std::string variation_ids_header_;
133 133
134 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate); 134 DISALLOW_COPY_AND_ASSIGN(ChromeResourceDispatcherHostDelegate);
135 }; 135 };
136 136
137 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE _H_ 137 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RESOURCE_DISPATCHER_HOST_DELEGATE _H_
OLDNEW
« no previous file with comments | « no previous file | ipc/ipc_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698