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

Side by Side Diff: chrome/common/chrome_notification_types.h

Issue 10175008: Improving the process model extension API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Syncing to the latest tree after a week away. Created 8 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 unified diff | Download patch | Annotate | Revision Log
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_COMMON_CHROME_NOTIFICATION_TYPES_H_ 5 #ifndef CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 6 #define CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
7 #pragma once 7 #pragma once
8 8
9 #include "content/public/browser/notification_types.h" 9 #include "content/public/browser/notification_types.h"
10 10
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 320
321 // Sent when the bookmark bubble is shown for a particular URL. The source 321 // Sent when the bookmark bubble is shown for a particular URL. The source
322 // is the profile, the details the URL. 322 // is the profile, the details the URL.
323 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN, 323 NOTIFICATION_BOOKMARK_BUBBLE_SHOWN,
324 324
325 // Task Manager ------------------------------------------------------------ 325 // Task Manager ------------------------------------------------------------
326 326
327 // Sent when WebUI TaskManager opens and is ready for showing tasks. 327 // Sent when WebUI TaskManager opens and is ready for showing tasks.
328 NOTIFICATION_TASK_MANAGER_WINDOW_READY, 328 NOTIFICATION_TASK_MANAGER_WINDOW_READY,
329 329
330 // The TaskManagerChildProcessResourceProvider collects the list of child
331 // processes when StartUpdating is called. This data is collected on the IO
332 // thread and passed back to the UI thread. Once all entries are added to the
333 // task manager, this notification is sent.
334 NOTIFICATION_TASK_MANAGER_CHILD_PROCESSES_DATA_READY,
335
330 // Sent when a renderer process is notified of new v8 heap statistics. The 336 // Sent when a renderer process is notified of new v8 heap statistics. The
331 // source is the ID of the renderer process, and the details are a 337 // source is the ID of the renderer process, and the details are a
332 // V8HeapStatsDetails object. 338 // V8HeapStatsDetails object.
333 NOTIFICATION_RENDERER_V8_HEAP_STATS_COMPUTED, 339 NOTIFICATION_RENDERER_V8_HEAP_STATS_COMPUTED,
334 340
335 // Sent when a renderer process is notified of a new FPS value. The source 341 // Sent when a renderer process is notified of a new FPS value. The source
336 // is the ID of the renderer process, and the details are an FPSDetails 342 // is the ID of the renderer process, and the details are an FPSDetails
337 // object. 343 // object.
338 NOTIFICATION_RENDERER_FPS_COMPUTED, 344 NOTIFICATION_RENDERER_FPS_COMPUTED,
339 345
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1120 // Currently only Content and Chrome define and use notifications. 1126 // Currently only Content and Chrome define and use notifications.
1121 // Custom notifications not belonging to Content and Chrome should start 1127 // Custom notifications not belonging to Content and Chrome should start
1122 // from here. 1128 // from here.
1123 NOTIFICATION_CHROME_END, 1129 NOTIFICATION_CHROME_END,
1124 }; 1130 };
1125 1131
1126 } // namespace chrome 1132 } // namespace chrome
1127 1133
1128 1134
1129 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_ 1135 #endif // CHROME_COMMON_CHROME_NOTIFICATION_TYPES_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | chrome/common/extensions/api/experimental_processes.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698