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

Side by Side Diff: components/nacl/common/nacl_delegate.h

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Windows build fix Created 7 years, 6 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) 2013 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 #ifndef COMPONENTS_NACL_COMMON_NACL_DELEGATE_H_
6 #define COMPONENTS_NACL_COMMON_NACL_DELEGATE_H_
7
8 #include "build/build_config.h"
9
10 namespace base {
11 class FilePath;
12 }
13
14 class CommandLine;
15
16 // This class encapsulates all the dependencies that nacl has on chrome
17 class NaClDelegate {
18 public:
19 NaClDelegate() {}
20 ~NaClDelegate() {}
21
22 // Copy all the relevant arguments from the command line of the current
23 // process to cmd_line that will be used for launching the NaCl loader/broker.
24 void CopyNaClCommandLineArguments(CommandLine* cmd_line);
25 };
26
27 extern NaClDelegate* GetNaClDelegate();
jam 2013/06/17 20:10:43 please see other delegates for other modules for e
yael.aharon1 2013/06/18 17:16:30 My problem here is that the only code from chrome
jam 2013/06/19 17:55:53 yes, i'm totally fine with not passing these two s
28
29 #endif // COMPONENTS_NACL_COMMON_NACL_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698