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

Unified Diff: base/mac/memory_pressure_monitor.cc

Issue 1149223002: Avoid basename conflict from memory_pressure_monitor.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: includes Created 5 years, 7 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
« no previous file with comments | « base/mac/memory_pressure_monitor.h ('k') | base/mac/memory_pressure_monitor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/mac/memory_pressure_monitor.cc
diff --git a/base/mac/memory_pressure_monitor.cc b/base/mac/memory_pressure_monitor.cc
deleted file mode 100644
index 5667aa6661c08cd2a89955ca4b58b9ee6ece3fdc..0000000000000000000000000000000000000000
--- a/base/mac/memory_pressure_monitor.cc
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/mac/memory_pressure_monitor.h"
-
-#include <dlfcn.h>
-#include <sys/sysctl.h>
-
-#include "base/mac/mac_util.h"
-
-namespace base {
-namespace mac {
-
-MemoryPressureListener::MemoryPressureLevel
-MemoryPressureMonitor::MemoryPressureLevelForMacMemoryPressure(
- int mac_memory_pressure) {
- switch (mac_memory_pressure) {
- case DISPATCH_MEMORYPRESSURE_NORMAL:
- return MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE;
- case DISPATCH_MEMORYPRESSURE_WARN:
- return MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE;
- case DISPATCH_MEMORYPRESSURE_CRITICAL:
- return MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL;
- }
- return MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE;
-}
-
-void MemoryPressureMonitor::NotifyMemoryPressureChanged(
- dispatch_source_s* event_source) {
- int mac_memory_pressure = dispatch_source_get_data(event_source);
- MemoryPressureListener::MemoryPressureLevel memory_pressure_level =
- MemoryPressureLevelForMacMemoryPressure(mac_memory_pressure);
- MemoryPressureListener::NotifyMemoryPressure(memory_pressure_level);
-}
-
-MemoryPressureMonitor::MemoryPressureMonitor()
- : memory_level_event_source_(nullptr) {
- // _dispatch_source_type_memorypressure is not available prior to 10.9.
- dispatch_source_type_t dispatch_source_memorypressure =
- static_cast<dispatch_source_type_t>
- (dlsym(RTLD_NEXT, "_dispatch_source_type_memorypressure"));
- if (dispatch_source_memorypressure) {
- // The MemoryPressureListener doesn't want to know about transitions to
- // MEMORY_PRESSURE_LEVEL_NONE so don't watch for
- // DISPATCH_MEMORYPRESSURE_NORMAL notifications.
- memory_level_event_source_.reset(
- dispatch_source_create(dispatch_source_memorypressure, 0,
- DISPATCH_MEMORYPRESSURE_WARN |
- DISPATCH_MEMORYPRESSURE_CRITICAL,
- dispatch_get_global_queue(
- DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)));
-
- dispatch_source_set_event_handler(memory_level_event_source_.get(), ^{
- NotifyMemoryPressureChanged(memory_level_event_source_.get());
- });
- dispatch_retain(memory_level_event_source_.get());
- dispatch_resume(memory_level_event_source_.get());
- }
-}
-
-MemoryPressureMonitor::~MemoryPressureMonitor() {
-}
-
-MemoryPressureListener::MemoryPressureLevel
-MemoryPressureMonitor::GetCurrentPressureLevel() const {
- if (base::mac::IsOSMountainLionOrEarlier()) {
- return MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE;
- }
- int mac_memory_pressure;
- size_t length = sizeof(int);
- sysctlbyname("kern.memorystatus_vm_pressure_level", &mac_memory_pressure,
- &length, nullptr, 0);
- return MemoryPressureLevelForMacMemoryPressure(mac_memory_pressure);
-}
-
-} // namespace mac
-} // namespace base
« no previous file with comments | « base/mac/memory_pressure_monitor.h ('k') | base/mac/memory_pressure_monitor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698