Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 "ui/base/native_theme/native_theme_win.h" | 5 #include "sandbox/linux/seccomp-bpf/sandbox_bpf.h" |
| 6 | 6 #include "sandbox/linux/seccomp-bpf/verifier.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace ui { | 9 TEST(SandboxBpf, CallSupports) { |
| 10 | 10 playground2::Sandbox::supportsSeccompSandbox(-1); |
|
Markus (顧孟勤)
2012/06/21 21:01:07
Maybe add a comment that we are not actually check
| |
| 11 TEST(NativeThemeTest, Init) { | |
| 12 ASSERT_TRUE(NativeThemeWin::instance() != NULL); | |
| 13 } | 11 } |
| 14 | |
| 15 } // namespace ui | |
| OLD | NEW |