Don't show supervised user as "already on this device" while they're being imported.
[chromium-blink-merge.git] / components / nacl / renderer / plugin / sel_ldr_launcher_chrome.cc
blob07ae6c8497d095359bad576c956e2efd11d198b3
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 "components/nacl/renderer/plugin/sel_ldr_launcher_chrome.h"
6 #include "native_client/src/include/nacl_macros.h"
7 #include "native_client/src/shared/platform/nacl_check.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