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

Side by Side Diff: content/ppapi_plugin/ppapi_thread.cc

Issue 2459733002: Move discardable memory to //components from //content (Closed)
Patch Set: Fix build error Created 4 years, 1 month 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
« no previous file with comments | « content/ppapi_plugin/DEPS ('k') | content/renderer/BUILD.gn » ('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 #include "content/ppapi_plugin/ppapi_thread.h" 5 #include "content/ppapi_plugin/ppapi_thread.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <limits> 9 #include <limits>
10 10
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/cpu.h" 12 #include "base/cpu.h"
13 #include "base/debug/alias.h" 13 #include "base/debug/alias.h"
14 #include "base/debug/crash_logging.h" 14 #include "base/debug/crash_logging.h"
15 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/memory/discardable_memory_allocator.h" 17 #include "base/memory/discardable_memory_allocator.h"
18 #include "base/metrics/histogram_macros.h" 18 #include "base/metrics/histogram_macros.h"
19 #include "base/metrics/sparse_histogram.h" 19 #include "base/metrics/sparse_histogram.h"
20 #include "base/rand_util.h" 20 #include "base/rand_util.h"
21 #include "base/single_thread_task_runner.h" 21 #include "base/single_thread_task_runner.h"
22 #include "base/strings/stringprintf.h" 22 #include "base/strings/stringprintf.h"
23 #include "base/strings/utf_string_conversions.h" 23 #include "base/strings/utf_string_conversions.h"
24 #include "base/threading/platform_thread.h" 24 #include "base/threading/platform_thread.h"
25 #include "base/time/time.h" 25 #include "base/time/time.h"
26 #include "base/trace_event/trace_event.h" 26 #include "base/trace_event/trace_event.h"
27 #include "build/build_config.h" 27 #include "build/build_config.h"
28 #include "components/discardable_memory/client/client_discardable_shared_memory_ manager.h"
28 #include "content/child/browser_font_resource_trusted.h" 29 #include "content/child/browser_font_resource_trusted.h"
29 #include "content/child/child_discardable_shared_memory_manager.h"
30 #include "content/child/child_process.h" 30 #include "content/child/child_process.h"
31 #include "content/common/child_process_messages.h" 31 #include "content/common/child_process_messages.h"
32 #include "content/ppapi_plugin/broker_process_dispatcher.h" 32 #include "content/ppapi_plugin/broker_process_dispatcher.h"
33 #include "content/ppapi_plugin/plugin_process_dispatcher.h" 33 #include "content/ppapi_plugin/plugin_process_dispatcher.h"
34 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h" 34 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h"
35 #include "content/public/common/content_client.h" 35 #include "content/public/common/content_client.h"
36 #include "content/public/common/content_switches.h" 36 #include "content/public/common/content_switches.h"
37 #include "content/public/common/pepper_plugin_info.h" 37 #include "content/public/common/pepper_plugin_info.h"
38 #include "content/public/common/sandbox_init.h" 38 #include "content/public/common/sandbox_init.h"
39 #include "ipc/ipc_channel_handle.h" 39 #include "ipc/ipc_channel_handle.h"
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 GetHistogramName(is_broker_, "LoadTime", path), 571 GetHistogramName(is_broker_, "LoadTime", path),
572 base::TimeDelta::FromMilliseconds(1), 572 base::TimeDelta::FromMilliseconds(1),
573 base::TimeDelta::FromSeconds(10), 573 base::TimeDelta::FromSeconds(10),
574 50, 574 50,
575 base::HistogramBase::kUmaTargetedHistogramFlag); 575 base::HistogramBase::kUmaTargetedHistogramFlag);
576 576
577 histogram->AddTime(load_time); 577 histogram->AddTime(load_time);
578 } 578 }
579 579
580 } // namespace content 580 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/DEPS ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698