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

Side by Side Diff: chrome/browser/task_manager/task_manager_browsertest.cc

Issue 16387014: Use a direct include of utf_string_conversions.h in chrome/browser/, part 3. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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
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.h" 5 #include "chrome/browser/task_manager/task_manager.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/stringprintf.h" 8 #include "base/stringprintf.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/background/background_contents_service.h" 10 #include "chrome/browser/background/background_contents_service.h"
11 #include "chrome/browser/background/background_contents_service_factory.h" 11 #include "chrome/browser/background/background_contents_service_factory.h"
12 #include "chrome/browser/browser_process.h" 12 #include "chrome/browser/browser_process.h"
13 #include "chrome/browser/extensions/extension_browsertest.h" 13 #include "chrome/browser/extensions/extension_browsertest.h"
14 #include "chrome/browser/extensions/extension_service.h" 14 #include "chrome/browser/extensions/extension_service.h"
15 #include "chrome/browser/extensions/extension_system.h" 15 #include "chrome/browser/extensions/extension_system.h"
16 #include "chrome/browser/infobars/confirm_infobar_delegate.h" 16 #include "chrome/browser/infobars/confirm_infobar_delegate.h"
17 #include "chrome/browser/infobars/infobar_service.h" 17 #include "chrome/browser/infobars/infobar_service.h"
18 #include "chrome/browser/notifications/desktop_notification_service.h" 18 #include "chrome/browser/notifications/desktop_notification_service.h"
19 #include "chrome/browser/notifications/notification.h" 19 #include "chrome/browser/notifications/notification.h"
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 // Check that we get some value for the cache columns. 543 // Check that we get some value for the cache columns.
544 DCHECK_NE(model()->GetResourceWebCoreImageCacheSize(resource_count), 544 DCHECK_NE(model()->GetResourceWebCoreImageCacheSize(resource_count),
545 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT)); 545 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT));
546 DCHECK_NE(model()->GetResourceWebCoreScriptsCacheSize(resource_count), 546 DCHECK_NE(model()->GetResourceWebCoreScriptsCacheSize(resource_count),
547 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT)); 547 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT));
548 DCHECK_NE(model()->GetResourceWebCoreCSSCacheSize(resource_count), 548 DCHECK_NE(model()->GetResourceWebCoreCSSCacheSize(resource_count),
549 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT)); 549 l10n_util::GetStringUTF16(IDS_TASK_MANAGER_NA_CELL_TEXT));
550 } 550 }
551 551
552 #endif 552 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698