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

Side by Side Diff: chrome/browser/profiles/profile_browsertest.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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 (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/profiles/profile.h" 5 #include "chrome/browser/profiles/profile.h"
6 6
7 #include <stddef.h>
8
7 #include "base/command_line.h" 9 #include "base/command_line.h"
8 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
10 #include "base/json/json_reader.h" 12 #include "base/json/json_reader.h"
11 #include "base/logging.h" 13 #include "base/logging.h"
12 #include "base/macros.h" 14 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
15 #include "base/prefs/pref_service.h" 17 #include "base/prefs/pref_service.h"
16 #include "base/sequenced_task_runner.h" 18 #include "base/sequenced_task_runner.h"
17 #include "base/synchronization/waitable_event.h" 19 #include "base/synchronization/waitable_event.h"
18 #include "base/values.h" 20 #include "base/values.h"
19 #include "base/version.h" 21 #include "base/version.h"
22 #include "build/build_config.h"
20 #include "chrome/browser/browser_process.h" 23 #include "chrome/browser/browser_process.h"
21 #include "chrome/browser/chrome_notification_types.h" 24 #include "chrome/browser/chrome_notification_types.h"
22 #include "chrome/browser/net/url_request_mock_util.h" 25 #include "chrome/browser/net/url_request_mock_util.h"
23 #include "chrome/browser/profiles/chrome_version_service.h" 26 #include "chrome/browser/profiles/chrome_version_service.h"
24 #include "chrome/browser/profiles/profile_impl.h" 27 #include "chrome/browser/profiles/profile_impl.h"
25 #include "chrome/browser/profiles/profile_manager.h" 28 #include "chrome/browser/profiles/profile_manager.h"
26 #include "chrome/browser/ui/browser.h" 29 #include "chrome/browser/ui/browser.h"
27 #include "chrome/browser/ui/tabs/tab_strip_model.h" 30 #include "chrome/browser/ui/tabs/tab_strip_model.h"
28 #include "chrome/common/chrome_constants.h" 31 #include "chrome/common/chrome_constants.h"
29 #include "chrome/common/pref_names.h" 32 #include "chrome/common/pref_names.h"
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 546
544 IN_PROC_BROWSER_TEST_F(ProfileBrowserTest, 547 IN_PROC_BROWSER_TEST_F(ProfileBrowserTest,
545 URLFetcherUsingExtensionContextDuringIncognitoTeardown) { 548 URLFetcherUsingExtensionContextDuringIncognitoTeardown) {
546 Browser* incognito_browser = 549 Browser* incognito_browser =
547 OpenURLOffTheRecord(browser()->profile(), GURL("about:blank")); 550 OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
548 551
549 RunURLFetcherActiveDuringIncognitoTeardownTest( 552 RunURLFetcherActiveDuringIncognitoTeardownTest(
550 incognito_browser, 553 incognito_browser,
551 incognito_browser->profile()->GetRequestContextForExtensions()); 554 incognito_browser->profile()->GetRequestContextForExtensions());
552 } 555 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_avatar_icon_util.cc ('k') | chrome/browser/profiles/profile_destroyer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698