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 "ppapi/native_client/src/trusted/plugin/nexe_arch.h" | |
6 | |
7 namespace { | 5 namespace { |
8 // The list of supported ISA strings for ARM. See issue: | 6 // The list of supported ISA strings for ARM. See issue: |
9 // http://code.google.com/p/nativeclient/issues/detail?id=1040 for more | 7 // http://code.google.com/p/nativeclient/issues/detail?id=1040 for more |
10 // information. Note that these string are to be case-insensitive compared. | 8 // information. Note that these string are to be case-insensitive compared. |
11 const char* const kNexeArchARM = "arm"; | 9 const char* const kNexeArchARM = "arm"; |
12 } // namespace | 10 } // namespace |
13 | 11 |
14 namespace plugin { | 12 namespace nacl { |
15 const char* GetSandboxISA() { | 13 const char* GetSandboxISA() { |
16 return kNexeArchARM; | 14 return kNexeArchARM; |
17 } | 15 } |
18 } // namespace plugin | 16 } // namespace nacl |
OLD | NEW |