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

Unified Diff: chrome/nacl/nacl_listener.h

Issue 7547002: Reenable the --enable-nacl-debug switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/nacl/nacl_listener.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/nacl/nacl_listener.h
===================================================================
--- chrome/nacl/nacl_listener.h (revision 95033)
+++ chrome/nacl/nacl_listener.h (working copy)
@@ -15,12 +15,13 @@
// request to start a NaCl module.
class NaClListener : public IPC::Channel::Listener {
public:
- NaClListener();
+ explicit NaClListener();
virtual ~NaClListener();
// Listen for a request to launch a NaCl module.
void Listen();
-
+ void set_debug_enabled(bool value) {debug_enabled_ = value;}
private:
+ bool debug_enabled_;
void OnStartSelLdr(std::vector<nacl::FileDescriptor> handles,
bool have_irt_file);
virtual bool OnMessageReceived(const IPC::Message& msg);
« no previous file with comments | « no previous file | chrome/nacl/nacl_listener.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698