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

Side by Side Diff: content/common/memory_pressure_messages.h

Issue 17351006: MemoryPressure: sends the signal to the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Message definition file, included multiple times, hence no include guard.
6
7 #include "base/memory/memory_pressure_listener.h"
8 #include "ipc/ipc_message_macros.h"
9 #include "ipc/ipc_param_traits.h"
10
11 #define IPC_MESSAGE_START MemoryPressureMsgStart
12
13 // Argument structures used in messages
14
15 IPC_ENUM_TRAITS(base::MemoryPressureListener::MemoryPressureLevel)
16
17 // Message sent from the browser to the renderer.
18
19 IPC_MESSAGE_CONTROL1(MemoryPressureMsg_MemoryPressure,
20 base::MemoryPressureListener::MemoryPressureLevel)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698