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
3// found in the LICENSE file.
4
5#include "native_client/src/include/nacl_macros.h"
6#include "native_client/src/shared/platform/nacl_check.h"
7#include "ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.h"
8
9namespace plugin {
10
11bool SelLdrLauncherChrome::Start(const char* url) {
12  NACL_NOTREACHED();
13  return false;
14}
15
16void SelLdrLauncherChrome::set_channel(NaClHandle channel) {
17  CHECK(channel_ == NACL_INVALID_HANDLE);
18  channel_ = channel;
19}
20
21}  // namespace plugin
22