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

Side by Side Diff: chrome/browser/apps/app_shim/app_shim_host_manager_browsertest_mac.mm

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 "chrome/browser/apps/app_shim/app_shim_host_manager_mac.h" 5 #include "chrome/browser/apps/app_shim/app_shim_host_manager_mac.h"
6 6
7 #include <unistd.h> 7 #include <unistd.h>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h"
11 #include "base/path_service.h" 12 #include "base/path_service.h"
12 #include "chrome/browser/apps/app_shim/app_shim_handler_mac.h" 13 #include "chrome/browser/apps/app_shim/app_shim_handler_mac.h"
13 #include "chrome/browser/apps/app_shim/test/app_shim_host_manager_test_api_mac.h " 14 #include "chrome/browser/apps/app_shim/test/app_shim_host_manager_test_api_mac.h "
14 #include "chrome/browser/browser_process.h" 15 #include "chrome/browser/browser_process.h"
15 #include "chrome/browser/profiles/profile.h" 16 #include "chrome/browser/profiles/profile.h"
16 #include "chrome/browser/ui/browser.h" 17 #include "chrome/browser/ui/browser.h"
17 #include "chrome/common/chrome_paths.h" 18 #include "chrome/common/chrome_paths.h"
18 #include "chrome/common/mac/app_mode_common.h" 19 #include "chrome/common/mac/app_mode_common.h"
19 #include "chrome/common/mac/app_shim_messages.h" 20 #include "chrome/common/mac/app_shim_messages.h"
20 #include "chrome/test/base/in_process_browser_test.h" 21 #include "chrome/test/base/in_process_browser_test.h"
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 ASSERT_TRUE(base::ReadSymbolicLink(symlink_path_, &socket_path)); 278 ASSERT_TRUE(base::ReadSymbolicLink(symlink_path_, &socket_path));
278 EXPECT_EQ(app_mode::kAppShimSocketShortName, socket_path.BaseName().value()); 279 EXPECT_EQ(app_mode::kAppShimSocketShortName, socket_path.BaseName().value());
279 280
280 // Check that the RunningChromeVersion file is correctly written. 281 // Check that the RunningChromeVersion file is correctly written.
281 base::FilePath version; 282 base::FilePath version;
282 EXPECT_TRUE(base::ReadSymbolicLink(version_path_, &version)); 283 EXPECT_TRUE(base::ReadSymbolicLink(version_path_, &version));
283 EXPECT_EQ(version_info::GetVersionNumber(), version.value()); 284 EXPECT_EQ(version_info::GetVersionNumber(), version.value());
284 } 285 }
285 286
286 } // namespace 287 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/apps/app_shim/app_shim_host_mac_unittest.cc ('k') | chrome/browser/apps/app_shim/app_shim_host_manager_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698