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

Side by Side Diff: chrome/browser/apps/guest_view/web_view_browsertest.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <queue> 5 #include <queue>
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/macros.h"
8 #include "base/path_service.h" 9 #include "base/path_service.h"
9 #include "base/process/process.h" 10 #include "base/process/process.h"
10 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
11 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
12 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
13 #include "base/thread_task_runner_handle.h" 14 #include "base/thread_task_runner_handle.h"
15 #include "build/build_config.h"
14 #include "chrome/app/chrome_command_ids.h" 16 #include "chrome/app/chrome_command_ids.h"
15 #include "chrome/browser/apps/app_browsertest_util.h" 17 #include "chrome/browser/apps/app_browsertest_util.h"
16 #include "chrome/browser/chrome_content_browser_client.h" 18 #include "chrome/browser/chrome_content_browser_client.h"
17 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" 19 #include "chrome/browser/content_settings/host_content_settings_map_factory.h"
18 #include "chrome/browser/lifetime/application_lifetime.h" 20 #include "chrome/browser/lifetime/application_lifetime.h"
19 #include "chrome/browser/pdf/pdf_extension_test_util.h" 21 #include "chrome/browser/pdf/pdf_extension_test_util.h"
20 #include "chrome/browser/prerender/prerender_link_manager.h" 22 #include "chrome/browser/prerender/prerender_link_manager.h"
21 #include "chrome/browser/prerender/prerender_link_manager_factory.h" 23 #include "chrome/browser/prerender/prerender_link_manager_factory.h"
22 #include "chrome/browser/profiles/profile.h" 24 #include "chrome/browser/profiles/profile.h"
23 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h" 25 #include "chrome/browser/renderer_context_menu/render_view_context_menu.h"
(...skipping 2928 matching lines...) Expand 10 before | Expand all | Expand 10 after
2952 // 4 tasks expected. The order is arbitrary. 2954 // 4 tasks expected. The order is arbitrary.
2953 // Tab: about:blank, 2955 // Tab: about:blank,
2954 // Background Page: <webview> task manager test, 2956 // Background Page: <webview> task manager test,
2955 // App: <webview> task manager test, 2957 // App: <webview> task manager test,
2956 // Webview: WebViewed test content. 2958 // Webview: WebViewed test content.
2957 EXPECT_EQ(4U, task_manager.tasks().size()); 2959 EXPECT_EQ(4U, task_manager.tasks().size());
2958 EXPECT_TRUE(HasExpectedGuestTask(task_manager, guest_contents)); 2960 EXPECT_TRUE(HasExpectedGuestTask(task_manager, guest_contents));
2959 } 2961 }
2960 2962
2961 #endif // defined(ENABLE_TASK_MANAGER) 2963 #endif // defined(ENABLE_TASK_MANAGER)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698