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

Unified Diff: content/browser/battery_status/battery_monitor_integration_browsertest.cc

Issue 2613803003: Simplifying ContentBrowserClient::GetAdditionalMappedFiles...() (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/battery_status/battery_monitor_integration_browsertest.cc
diff --git a/content/browser/battery_status/battery_monitor_integration_browsertest.cc b/content/browser/battery_status/battery_monitor_integration_browsertest.cc
index e024d6d7f24c6f74152aa5f74e4ee22cf5341a49..9856a6663572ad758d41fcbceae91dc70a4f9564 100644
--- a/content/browser/battery_status/battery_monitor_integration_browsertest.cc
+++ b/content/browser/battery_status/battery_monitor_integration_browsertest.cc
@@ -109,10 +109,9 @@ class TestContentBrowserClient : public ContentBrowserClient {
void GetAdditionalMappedFilesForChildProcess(
const base::CommandLine& command_line,
int child_process_id,
- FileDescriptorInfo* mappings,
- std::map<int, base::MemoryMappedFile::Region>* regions) override {
+ FileDescriptorInfo* mappings) override {
ShellContentBrowserClient::Get()->GetAdditionalMappedFilesForChildProcess(
- command_line, child_process_id, mappings, regions);
+ command_line, child_process_id, mappings);
}
#endif // defined(OS_ANDROID)
};

Powered by Google App Engine
This is Rietveld 408576698