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

Side by Side Diff: remoting/base/auto_thread_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
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
« no previous file with comments | « remoting/base/auto_thread_task_runner.h ('k') | remoting/base/breakpad_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/files/file_path.h" 6 #include "base/files/file_path.h"
7 #include "base/memory/ref_counted.h" 7 #include "base/memory/ref_counted.h"
8 #include "base/scoped_native_library.h" 8 #include "base/scoped_native_library.h"
9 #include "build/build_config.h"
9 #include "remoting/base/auto_thread.h" 10 #include "remoting/base/auto_thread.h"
10 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
11 12
12 #if defined(OS_WIN) 13 #if defined(OS_WIN)
13 #include <objbase.h> 14 #include <objbase.h>
14 #include "base/win/windows_version.h" 15 #include "base/win/windows_version.h"
15 #endif 16 #endif
16 17
17 namespace { 18 namespace {
18 19
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 // Whether the thread is the "main" STA apartment depends upon previous 193 // Whether the thread is the "main" STA apartment depends upon previous
193 // COM activity in this test process, so allow both types here. 194 // COM activity in this test process, so allow both types here.
194 EXPECT_TRUE(apt_type == APTTYPE_MAINSTA || apt_type == APTTYPE_STA); 195 EXPECT_TRUE(apt_type == APTTYPE_MAINSTA || apt_type == APTTYPE_STA);
195 } else { 196 } else {
196 EXPECT_EQ(E_NOTIMPL, hresult); 197 EXPECT_EQ(E_NOTIMPL, hresult);
197 } 198 }
198 } 199 }
199 #endif // defined(OS_WIN) 200 #endif // defined(OS_WIN)
200 201
201 } // namespace remoting 202 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/base/auto_thread_task_runner.h ('k') | remoting/base/breakpad_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698