Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: ppapi/native_client/src/trusted/plugin/sel_ldr_launcher_chrome.cc

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
9 namespace plugin {
10
11 bool SelLdrLauncherChrome::Start(const char* url) {
12 NACL_NOTREACHED();
13 return false;
14 }
15
16 void SelLdrLauncherChrome::set_channel(NaClHandle channel) {
17 CHECK(channel_ == NACL_INVALID_HANDLE);
18 channel_ = channel;
19 }
20
21 } // namespace plugin
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698