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

Side by Side Diff: ppapi/native_client/src/trusted/plugin/arch_mips/sandbox_isa.cc

Issue 152133007: [MIPS] Support for MIPS PNaCl in PPAPI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 10 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 (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" 5 #include "ppapi/native_client/src/trusted/plugin/nexe_arch.h"
6 6
7 namespace { 7 namespace {
8 // The list of supported ISA strings for ARM. See issue: 8 // The list of supported ISA strings for MIPS. See issue:
9 // http://code.google.com/p/nativeclient/issues/detail?id=1040 for more 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. 10 // information. Note that these string are to be case-insensitive compared.
11 const char* const kNexeArchARM = "arm"; 11 const char* const kNexeArchMIPS = "mips32";
12 } // namespace 12 } // namespace
13 13
14 namespace plugin { 14 namespace plugin {
15 const char* GetSandboxISA() { 15 const char* GetSandboxISA() {
16 return kNexeArchARM; 16 return kNexeArchMIPS;
17 } 17 }
18 } // namespace plugin 18 } // namespace plugin
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698