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

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

Issue 10756018: Merge grd files in ui/resources and chrome/app/theme (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, *_standard.rc Created 8 years, 5 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/bind.h" 7 #include "base/bind.h"
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/i18n/number_formatting.h" 9 #include "base/i18n/number_formatting.h"
10 #include "base/i18n/rtl.h" 10 #include "base/i18n/rtl.h"
(...skipping 21 matching lines...) Expand all
32 #include "chrome/common/view_type.h" 32 #include "chrome/common/view_type.h"
33 #include "content/public/browser/browser_child_process_host.h" 33 #include "content/public/browser/browser_child_process_host.h"
34 #include "content/public/browser/browser_thread.h" 34 #include "content/public/browser/browser_thread.h"
35 #include "content/public/browser/render_view_host.h" 35 #include "content/public/browser/render_view_host.h"
36 #include "content/public/browser/resource_request_info.h" 36 #include "content/public/browser/resource_request_info.h"
37 #include "content/public/browser/web_contents.h" 37 #include "content/public/browser/web_contents.h"
38 #include "content/public/browser/web_contents_delegate.h" 38 #include "content/public/browser/web_contents_delegate.h"
39 #include "content/public/common/result_codes.h" 39 #include "content/public/common/result_codes.h"
40 #include "grit/chromium_strings.h" 40 #include "grit/chromium_strings.h"
41 #include "grit/generated_resources.h" 41 #include "grit/generated_resources.h"
42 #include "grit/ui_resources_standard.h" 42 #include "grit/ui_resources.h"
43 #include "ui/base/l10n/l10n_util.h" 43 #include "ui/base/l10n/l10n_util.h"
44 #include "ui/base/resource/resource_bundle.h" 44 #include "ui/base/resource/resource_bundle.h"
45 #include "ui/base/text/bytes_formatting.h" 45 #include "ui/base/text/bytes_formatting.h"
46 #include "ui/gfx/image/image_skia.h" 46 #include "ui/gfx/image/image_skia.h"
47 #include "unicode/coll.h" 47 #include "unicode/coll.h"
48 48
49 using content::BrowserThread; 49 using content::BrowserThread;
50 using content::OpenURLParams; 50 using content::OpenURLParams;
51 using content::Referrer; 51 using content::Referrer;
52 using content::ResourceRequestInfo; 52 using content::ResourceRequestInfo;
(...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 // Count the number of extensions with background pages (including 1192 // Count the number of extensions with background pages (including
1193 // incognito). 1193 // incognito).
1194 count += CountExtensionBackgroundPagesForProfile(profile); 1194 count += CountExtensionBackgroundPagesForProfile(profile);
1195 if (profile->HasOffTheRecordProfile()) { 1195 if (profile->HasOffTheRecordProfile()) {
1196 count += CountExtensionBackgroundPagesForProfile( 1196 count += CountExtensionBackgroundPagesForProfile(
1197 profile->GetOffTheRecordProfile()); 1197 profile->GetOffTheRecordProfile());
1198 } 1198 }
1199 } 1199 }
1200 return count; 1200 return count;
1201 } 1201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698