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

Side by Side Diff: chrome/browser/task_manager/task_manager.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_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ 5 #ifndef CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ 6 #define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <utility> 10 #include <utility>
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 248
249 // Invoked when a range of items has changed. 249 // Invoked when a range of items has changed.
250 virtual void OnItemsChanged(int start, int length) = 0; 250 virtual void OnItemsChanged(int start, int length) = 0;
251 251
252 // Invoked when new items are added. 252 // Invoked when new items are added.
253 virtual void OnItemsAdded(int start, int length) = 0; 253 virtual void OnItemsAdded(int start, int length) = 0;
254 254
255 // Invoked when a range of items has been removed. 255 // Invoked when a range of items has been removed.
256 virtual void OnItemsRemoved(int start, int length) = 0; 256 virtual void OnItemsRemoved(int start, int length) = 0;
257 257
258 // Invoked when a range of items is to be immediately removed. It differs
259 // from OnItemsRemoved by the fact that the item is still in the task manager,
260 // so it can be queried for and found.
261 virtual void OnItemsToBeRemoved(int start, int length) {}
262
258 // Invoked when the initialization of the model has been finished and 263 // Invoked when the initialization of the model has been finished and
259 // periodical updates is started. The first periodical update will be done 264 // periodical updates is started. The first periodical update will be done
260 // in a few seconds. (depending on platform) 265 // in a few seconds. (depending on platform)
261 virtual void OnReadyPeriodicalUpdate() {} 266 virtual void OnReadyPeriodicalUpdate() {}
262 }; 267 };
263 268
264 // The model that the TaskManager is using. 269 // The model that the TaskManager is using.
265 class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> { 270 class TaskManagerModel : public base::RefCountedThreadSafe<TaskManagerModel> {
266 public: 271 public:
267 // (start, length) 272 // (start, length)
268 typedef std::pair<int, int> GroupRange; 273 typedef std::pair<int, int> GroupRange;
269 274
270 explicit TaskManagerModel(TaskManager* task_manager); 275 explicit TaskManagerModel(TaskManager* task_manager);
271 276
272 void AddObserver(TaskManagerModelObserver* observer); 277 void AddObserver(TaskManagerModelObserver* observer);
273 void RemoveObserver(TaskManagerModelObserver* observer); 278 void RemoveObserver(TaskManagerModelObserver* observer);
274 279
275 // Returns number of registered resources. 280 // Returns number of registered resources.
276 int ResourceCount() const; 281 int ResourceCount() const;
277 // Returns number of registered groups. 282 // Returns number of registered groups.
278 int GroupCount() const; 283 int GroupCount() const;
279 284
280 // Methods to return raw resource information. 285 // Methods to return raw resource information.
281 int64 GetNetworkUsage(int index) const; 286 int64 GetNetworkUsage(int index) const;
282 double GetCPUUsage(int index) const; 287 double GetCPUUsage(int index) const;
283 int GetProcessId(int index) const; 288 int GetProcessId(int index) const;
289 base::ProcessHandle GetProcess(int index) const;
284 int GetResourceUniqueId(int index) const; 290 int GetResourceUniqueId(int index) const;
285 // Returns the index of resource that has the given |unique_id|. Returns -1 if 291 // Returns the index of resource that has the given |unique_id|. Returns -1 if
286 // no resouce has the |unique_id|. 292 // no resouce has the |unique_id|.
287 int GetResourceIndexByUniqueId(const int unique_id) const; 293 int GetResourceIndexByUniqueId(const int unique_id) const;
288 294
289 // Methods to return formatted resource information. 295 // Methods to return formatted resource information.
290 string16 GetResourceTitle(int index) const; 296 string16 GetResourceTitle(int index) const;
291 string16 GetResourceProfileName(int index) const; 297 string16 GetResourceProfileName(int index) const;
292 string16 GetResourceNetworkUsage(int index) const; 298 string16 GetResourceNetworkUsage(int index) const;
293 string16 GetResourceCPUUsage(int index) const; 299 string16 GetResourceCPUUsage(int index) const;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 bool GetFPS(int index, float* result) const; 333 bool GetFPS(int index, float* result) const;
328 334
329 // Gets the sqlite memory (in byte). Return false if the resource for the 335 // Gets the sqlite memory (in byte). Return false if the resource for the
330 // given row doesn't report information. 336 // given row doesn't report information.
331 bool GetSqliteMemoryUsedBytes(int index, size_t* result) const; 337 bool GetSqliteMemoryUsedBytes(int index, size_t* result) const;
332 338
333 // Gets the amount of memory allocated for javascript. Returns false if the 339 // Gets the amount of memory allocated for javascript. Returns false if the
334 // resource for the given row isn't a renderer. 340 // resource for the given row isn't a renderer.
335 bool GetV8Memory(int index, size_t* result) const; 341 bool GetV8Memory(int index, size_t* result) const;
336 342
343 // Gets the amount of memory used for javascript. Returns false if the
344 // resource for the given row isn't a renderer.
345 bool GetV8MemoryUsed(int index, size_t* result) const;
346
337 // Returns true if resource for the given row can be activated. 347 // Returns true if resource for the given row can be activated.
338 bool CanActivate(int index) const; 348 bool CanActivate(int index) const;
339 349
340 // Returns true if resource for the given row can be inspected using developer 350 // Returns true if resource for the given row can be inspected using developer
341 // tools. 351 // tools.
342 bool CanInspect(int index) const; 352 bool CanInspect(int index) const;
343 353
344 // Invokes or reveals developer tools window for resource in the given row. 354 // Invokes or reveals developer tools window for resource in the given row.
345 void Inspect(int index) const; 355 void Inspect(int index) const;
346 356
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 400
391 // Returns Extension of given resource or NULL if not applicable. 401 // Returns Extension of given resource or NULL if not applicable.
392 const Extension* GetResourceExtension(int index) const; 402 const Extension* GetResourceExtension(int index) const;
393 403
394 void AddResource(TaskManager::Resource* resource); 404 void AddResource(TaskManager::Resource* resource);
395 void RemoveResource(TaskManager::Resource* resource); 405 void RemoveResource(TaskManager::Resource* resource);
396 406
397 void StartUpdating(); 407 void StartUpdating();
398 void StopUpdating(); 408 void StopUpdating();
399 409
410 // Listening involves calling StartUpdating on all resource providers. This
411 // causes all of them to subscribe to notifications and enumerate current
412 // resources. It differs from StartUpdating that it doesn't start the
413 // Refresh timer. The end result is that we have a full view of resources, but
414 // don't spend unneeded time updating, unless we have a real need to.
415 void StartListening();
416 void StopListening();
417
400 void Clear(); // Removes all items. 418 void Clear(); // Removes all items.
401 419
402 // Sends OnModelChanged() to all observers to inform them of significant 420 // Sends OnModelChanged() to all observers to inform them of significant
403 // changes to the model. 421 // changes to the model.
404 void ModelChanged(); 422 void ModelChanged();
405 423
406 void NotifyResourceTypeStats( 424 void NotifyResourceTypeStats(
407 base::ProcessId renderer_id, 425 base::ProcessId renderer_id,
408 const WebKit::WebCache::ResourceTypeStats& stats); 426 const WebKit::WebCache::ResourceTypeStats& stats);
409 427
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 // because the linux call takes >10ms to complete. This cache is cleared on 553 // because the linux call takes >10ms to complete. This cache is cleared on
536 // every Refresh(). 554 // every Refresh().
537 mutable MemoryUsageMap memory_usage_map_; 555 mutable MemoryUsageMap memory_usage_map_;
538 556
539 ObserverList<TaskManagerModelObserver> observer_list_; 557 ObserverList<TaskManagerModelObserver> observer_list_;
540 558
541 // How many calls to StartUpdating have been made without matching calls to 559 // How many calls to StartUpdating have been made without matching calls to
542 // StopUpdating. 560 // StopUpdating.
543 int update_requests_; 561 int update_requests_;
544 562
563 // How many calls to StartListening have been made without matching calls to
564 // StopListening.
565 int listen_requests_;
566
545 // Whether we are currently in the process of updating. 567 // Whether we are currently in the process of updating.
546 UpdateState update_state_; 568 UpdateState update_state_;
547 569
548 // A salt lick for the goats. 570 // A salt lick for the goats.
549 uint64 goat_salt_; 571 uint64 goat_salt_;
550 572
551 // Resource identifier that is unique within single session. 573 // Resource identifier that is unique within single session.
552 int last_unique_id_; 574 int last_unique_id_;
553 575
554 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel); 576 DISALLOW_COPY_AND_ASSIGN(TaskManagerModel);
555 }; 577 };
556 578
557 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_ 579 #endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_tabs_module.cc ('k') | chrome/browser/task_manager/task_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698