Move scoped_nsdisable_screen_update from base to app/mac
Move scoped_aedesc from base to base/mac
Use namespace and proper Google-style class naming.

TEST=it compiles
BUG=none
Review URL: http://codereview.chromium.org/3828009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62904 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index f730ec07..744e1003 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -23,8 +23,8 @@
 #include "base/environment.h"
 #include "base/file_path.h"
 #include "base/logging.h"
+#include "base/mac/scoped_nsautorelease_pool.h"
 #include "base/nss_util.h"
-#include "base/scoped_nsautorelease_pool.h"
 #include "base/thread.h"
 #include "remoting/base/encoder_verbatim.h"
 #include "remoting/base/encoder_zlib.h"
@@ -65,7 +65,7 @@
 
 int main(int argc, char** argv) {
   // Needed for the Mac, so we don't leak objects when threads are created.
-  base::ScopedNSAutoreleasePool pool;
+  base::mac::ScopedNSAutoreleasePool pool;
 
   CommandLine::Init(argc, argv);
   const CommandLine* cmd_line = CommandLine::ForCurrentProcess();