| OLD | NEW |
| 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 "chrome/browser/task_manager/task_manager_resource_providers.h" | 5 #include "chrome/browser/task_manager/task_manager_resource_providers.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "content/public/browser/browser_child_process_host_iterator.h" | 48 #include "content/public/browser/browser_child_process_host_iterator.h" |
| 49 #include "content/public/browser/browser_thread.h" | 49 #include "content/public/browser/browser_thread.h" |
| 50 #include "content/public/browser/child_process_data.h" | 50 #include "content/public/browser/child_process_data.h" |
| 51 #include "content/public/browser/notification_service.h" | 51 #include "content/public/browser/notification_service.h" |
| 52 #include "content/public/browser/render_process_host.h" | 52 #include "content/public/browser/render_process_host.h" |
| 53 #include "content/public/browser/render_view_host.h" | 53 #include "content/public/browser/render_view_host.h" |
| 54 #include "content/public/browser/web_contents.h" | 54 #include "content/public/browser/web_contents.h" |
| 55 #include "content/public/common/process_type.h" | 55 #include "content/public/common/process_type.h" |
| 56 #include "grit/generated_resources.h" | 56 #include "grit/generated_resources.h" |
| 57 #include "grit/theme_resources.h" | 57 #include "grit/theme_resources.h" |
| 58 #include "grit/theme_resources_standard.h" | |
| 59 #include "third_party/sqlite/sqlite3.h" | 58 #include "third_party/sqlite/sqlite3.h" |
| 60 #include "ui/base/l10n/l10n_util.h" | 59 #include "ui/base/l10n/l10n_util.h" |
| 61 #include "ui/base/resource/resource_bundle.h" | 60 #include "ui/base/resource/resource_bundle.h" |
| 62 #include "ui/gfx/image/image_skia.h" | 61 #include "ui/gfx/image/image_skia.h" |
| 63 #include "v8/include/v8.h" | 62 #include "v8/include/v8.h" |
| 64 | 63 |
| 65 #if defined(OS_MACOSX) | 64 #if defined(OS_MACOSX) |
| 66 #include "ui/gfx/image/image_skia_util_mac.h" | 65 #include "ui/gfx/image/image_skia_util_mac.h" |
| 67 #endif | 66 #endif |
| 68 #if defined(OS_WIN) | 67 #if defined(OS_WIN) |
| (...skipping 1422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 | 1490 |
| 1492 return &resource_; | 1491 return &resource_; |
| 1493 } | 1492 } |
| 1494 | 1493 |
| 1495 void TaskManagerBrowserProcessResourceProvider::StartUpdating() { | 1494 void TaskManagerBrowserProcessResourceProvider::StartUpdating() { |
| 1496 task_manager_->AddResource(&resource_); | 1495 task_manager_->AddResource(&resource_); |
| 1497 } | 1496 } |
| 1498 | 1497 |
| 1499 void TaskManagerBrowserProcessResourceProvider::StopUpdating() { | 1498 void TaskManagerBrowserProcessResourceProvider::StopUpdating() { |
| 1500 } | 1499 } |
| OLD | NEW |