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

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

Issue 11094041: Merge 161048 - Disable tcmalloc profile files. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/src/
Patch Set: Created 8 years, 2 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 | chrome/browser/renderer_host/chrome_render_message_filter.cc » ('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_RENDER_MESSAGE_FILTER_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_
6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 bool lazy); 132 bool lazy);
133 void OnExtensionCloseChannel(int port_id, bool connection_error); 133 void OnExtensionCloseChannel(int port_id, bool connection_error);
134 void OnExtensionRequestForIOThread( 134 void OnExtensionRequestForIOThread(
135 int routing_id, 135 int routing_id,
136 const ExtensionHostMsg_Request_Params& params); 136 const ExtensionHostMsg_Request_Params& params);
137 void OnExtensionShouldUnloadAck(const std::string& extension_id, 137 void OnExtensionShouldUnloadAck(const std::string& extension_id,
138 int sequence_id); 138 int sequence_id);
139 void OnExtensionUnloadAck(const std::string& extension_id); 139 void OnExtensionUnloadAck(const std::string& extension_id);
140 void OnExtensionGenerateUniqueID(int* unique_id); 140 void OnExtensionGenerateUniqueID(int* unique_id);
141 void OnExtensionResumeRequests(int route_id); 141 void OnExtensionResumeRequests(int route_id);
142 #if defined(USE_TCMALLOC)
143 void OnRendererTcmalloc(const std::string& output);
144 void OnWriteTcmallocHeapProfile(const FilePath::StringType& filename,
145 const std::string& output);
146 #endif
147 void OnAllowDatabase(int render_view_id, 142 void OnAllowDatabase(int render_view_id,
148 const GURL& origin_url, 143 const GURL& origin_url,
149 const GURL& top_origin_url, 144 const GURL& top_origin_url,
150 const string16& name, 145 const string16& name,
151 const string16& display_name, 146 const string16& display_name,
152 bool* allowed); 147 bool* allowed);
153 void OnAllowDOMStorage(int render_view_id, 148 void OnAllowDOMStorage(int render_view_id,
154 const GURL& origin_url, 149 const GURL& origin_url,
155 const GURL& top_origin_url, 150 const GURL& top_origin_url,
156 bool local, 151 bool local,
(...skipping 28 matching lines...) Expand all
185 scoped_refptr<ExtensionInfoMap> extension_info_map_; 180 scoped_refptr<ExtensionInfoMap> extension_info_map_;
186 // Used to look up permissions at database creation time. 181 // Used to look up permissions at database creation time.
187 scoped_refptr<CookieSettings> cookie_settings_; 182 scoped_refptr<CookieSettings> cookie_settings_;
188 183
189 base::WeakPtrFactory<ChromeRenderMessageFilter> weak_ptr_factory_; 184 base::WeakPtrFactory<ChromeRenderMessageFilter> weak_ptr_factory_;
190 185
191 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter); 186 DISALLOW_COPY_AND_ASSIGN(ChromeRenderMessageFilter);
192 }; 187 };
193 188
194 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_ 189 #endif // CHROME_BROWSER_RENDERER_HOST_CHROME_RENDER_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/chrome_render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698