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

Side by Side Diff: content/common/gpu/media/vaapi_jpeg_decoder_unittest.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 <stdint.h> 5 #include <stdint.h>
6 #include <string.h>
6 7
7 #include <string> 8 #include <string>
8 9
9 // This has to be included first. 10 // This has to be included first.
10 // See http://code.google.com/p/googletest/issues/detail?id=371 11 // See http://code.google.com/p/googletest/issues/detail?id=371
11 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
12 13
13 #include "base/at_exit.h" 14 #include "base/at_exit.h"
14 #include "base/bind.h" 15 #include "base/bind.h"
15 #include "base/files/file_util.h" 16 #include "base/files/file_util.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 132
132 } // namespace 133 } // namespace
133 } // namespace content 134 } // namespace content
134 135
135 int main(int argc, char** argv) { 136 int main(int argc, char** argv) {
136 testing::InitGoogleTest(&argc, argv); 137 testing::InitGoogleTest(&argc, argv);
137 base::AtExitManager exit_manager; 138 base::AtExitManager exit_manager;
138 content::VaapiWrapper::PreSandboxInitialization(); 139 content::VaapiWrapper::PreSandboxInitialization();
139 return RUN_ALL_TESTS(); 140 return RUN_ALL_TESTS();
140 } 141 }
OLDNEW
« no previous file with comments | « content/common/gpu/media/vaapi_jpeg_decoder.cc ('k') | content/common/gpu/media/vaapi_video_decode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698