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

Side by Side Diff: src/trusted/plugin/arch_arm/sandbox_isa.cc

Issue 7799028: Remove src/trusted/plugin (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix gyp file for necessary -I Created 9 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/trusted/nonnacl_util/nonnacl_util.gyp ('k') | src/trusted/plugin/arch_x86/sandbox_isa.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2010 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can
3 // be found in the LICENSE file.
4
5 #include "native_client/src/trusted/plugin/nexe_arch.h"
6
7 namespace {
8 // The list of supported ISA strings for ARM. See issue:
9 // http://code.google.com/p/nativeclient/issues/detail?id=1040 for more
10 // information. Note that these string are to be case-insensitive compared.
11 const char* const kNexeArchARM = "arm";
12 } // namespace
13
14 namespace plugin {
15 const char* GetSandboxISA() {
16 return kNexeArchARM;
17 }
18 } // namespace plugin
OLDNEW
« no previous file with comments | « src/trusted/nonnacl_util/nonnacl_util.gyp ('k') | src/trusted/plugin/arch_x86/sandbox_isa.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698