Componentize component_updater: Copy over test data with executable bit.
[chromium-blink-merge.git] / ppapi / native_client / src / trusted / plugin / sel_ldr_launcher_chrome.cc
blobfd76135693e91f842392d5e819e2a55287cc3ecc
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.
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"
9 namespace plugin {
11 bool SelLdrLauncherChrome::Start(const char* url) {
12 NACL_NOTREACHED();
13 return false;
16 void SelLdrLauncherChrome::set_channel(NaClHandle channel) {
17 CHECK(channel_ == NACL_INVALID_HANDLE);
18 channel_ = channel;
21 } // namespace plugin