| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "extensions/browser/api/messaging/native_message_host.h" | |
| 6 | |
| 7 namespace extensions { | |
| 8 | |
| 9 const char NativeMessageHost::kFailedToStartError[] = | |
| 10 "Failed to start native messaging host."; | |
| 11 const char NativeMessageHost::kInvalidNameError[] = | |
| 12 "Invalid native messaging host name specified."; | |
| 13 const char NativeMessageHost::kNativeHostExited[] = "Native host has exited."; | |
| 14 const char NativeMessageHost::kNotFoundError[] = | |
| 15 "Specified native messaging host not found."; | |
| 16 const char NativeMessageHost::kForbiddenError[] = | |
| 17 "Access to the specified native messaging host is forbidden."; | |
| 18 const char NativeMessageHost::kHostInputOuputError[] = | |
| 19 "Error when communicating with the native messaging host."; | |
| 20 | |
| 21 } // extensions | |
| OLD | NEW |