| Index: ppapi/native_client/src/trusted/plugin/arch_mips/sandbox_isa.cc
|
| diff --git a/ppapi/native_client/src/trusted/plugin/arch_arm/sandbox_isa.cc b/ppapi/native_client/src/trusted/plugin/arch_mips/sandbox_isa.cc
|
| similarity index 69%
|
| copy from ppapi/native_client/src/trusted/plugin/arch_arm/sandbox_isa.cc
|
| copy to ppapi/native_client/src/trusted/plugin/arch_mips/sandbox_isa.cc
|
| index 108f49be22689bef0a0372247fbadd846a24d8a7..bdceabce2124a06e2776ff1d14fc0b976c9e8c0f 100644
|
| --- a/ppapi/native_client/src/trusted/plugin/arch_arm/sandbox_isa.cc
|
| +++ b/ppapi/native_client/src/trusted/plugin/arch_mips/sandbox_isa.cc
|
| @@ -1,18 +1,18 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| #include "ppapi/native_client/src/trusted/plugin/nexe_arch.h"
|
|
|
| namespace {
|
| -// The list of supported ISA strings for ARM. See issue:
|
| +// The list of supported ISA strings for MIPS. See issue:
|
| // http://code.google.com/p/nativeclient/issues/detail?id=1040 for more
|
| // information. Note that these string are to be case-insensitive compared.
|
| -const char* const kNexeArchARM = "arm";
|
| +const char* const kNexeArchMIPS = "mips";
|
| } // namespace
|
|
|
| namespace plugin {
|
| const char* GetSandboxISA() {
|
| - return kNexeArchARM;
|
| + return kNexeArchMIPS;
|
| }
|
| } // namespace plugin
|
|
|