summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-21 20:09:39 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-21 20:09:39 +0000
commit4e3e9d70e14f80d41d7a1667430e6acbd561bd50 (patch)
tree28f3ec0c35c1c1fe10574ca4616c3901b45f30fb /chrome/browser/renderer_host
parent75760e6ee1ca6528cf28be0de5fd791527c9e290 (diff)
downloadchromium_src-4e3e9d70e14f80d41d7a1667430e6acbd561bd50.zip
chromium_src-4e3e9d70e14f80d41d7a1667430e6acbd561bd50.tar.gz
chromium_src-4e3e9d70e14f80d41d7a1667430e6acbd561bd50.tar.bz2
Remove an unused variable and some includes.
BUG=none TEST=none Review URL: http://codereview.chromium.org/209043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26727 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host')
-rw-r--r--chrome/browser/renderer_host/browser_render_process_host.cc18
1 files changed, 1 insertions, 17 deletions
diff --git a/chrome/browser/renderer_host/browser_render_process_host.cc b/chrome/browser/renderer_host/browser_render_process_host.cc
index 5e4feaa..2cbed64 100644
--- a/chrome/browser/renderer_host/browser_render_process_host.cc
+++ b/chrome/browser/renderer_host/browser_render_process_host.cc
@@ -20,14 +20,8 @@
#include "app/app_switches.h"
#include "base/command_line.h"
#include "base/field_trial.h"
-#include "base/linked_ptr.h"
#include "base/logging.h"
-#include "base/path_service.h"
#include "base/process_util.h"
-#include "base/rand_util.h"
-#include "base/scoped_ptr.h"
-#include "base/shared_memory.h"
-#include "base/singleton.h"
#include "base/string_util.h"
#include "base/thread.h"
#include "chrome/browser/browser_process.h"
@@ -56,7 +50,6 @@
#include "chrome/common/result_codes.h"
#include "chrome/renderer/render_process.h"
#include "chrome/renderer/render_thread.h"
-#include "chrome/installer/util/google_update_settings.h"
#include "grit/generated_resources.h"
#include "ipc/ipc_switches.h"
@@ -64,7 +57,7 @@
#include "app/win_util.h"
#include "chrome/browser/sandbox_policy.h"
#elif defined(OS_LINUX)
-#include "base/linux_util.h"
+#include "base/singleton.h"
#include "chrome/browser/zygote_host_linux.h"
#include "chrome/browser/renderer_host/render_crash_handler_host_linux.h"
#include "chrome/browser/renderer_host/render_sandbox_host_linux.h"
@@ -120,15 +113,6 @@ class RendererMainThread : public base::Thread {
};
-#if defined(OS_LINUX)
-// This is defined in chrome/browser/google_update_settings_linux.cc, it's the
-// static string containing the user's unique GUID. We send this in the crash
-// report.
-namespace google_update {
-extern std::string linux_guid;
-}
-#endif
-
// Size of the buffer after which individual link updates deemed not warranted
// and the overall update should be used instead.
static const unsigned kVisitedLinkBufferThreshold = 50;