make use of media_use_ffmpeg in BUILD.gn
[chromium-blink-merge.git] / extensions / browser / api / messaging / native_message_host.cc
blobf3bb082f12c483bd25849e4ef11aaab6747d5162
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.
5 #include "extensions/browser/api/messaging/native_message_host.h"
7 namespace extensions {
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.";
21 } // extensions