summaryrefslogtreecommitdiffstats
path: root/content/shell/shell_render_process_observer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/shell/shell_render_process_observer.cc')
-rw-r--r--content/shell/shell_render_process_observer.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/content/shell/shell_render_process_observer.cc b/content/shell/shell_render_process_observer.cc
new file mode 100644
index 0000000..a46f6f9
--- /dev/null
+++ b/content/shell/shell_render_process_observer.cc
@@ -0,0 +1,26 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/shell/shell_render_process_observer.h"
+
+#include "base/command_line.h"
+#include "content/public/renderer/render_thread.h"
+#include "content/shell/layout_test_controller_bindings.h"
+#include "content/shell/shell_switches.h"
+
+namespace content {
+
+ShellRenderProcessObserver::ShellRenderProcessObserver() {
+ RenderThread::Get()->AddObserver(this);
+}
+
+ShellRenderProcessObserver::~ShellRenderProcessObserver() {
+}
+
+void ShellRenderProcessObserver::WebKitInitialized() {
+ if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree))
+ RenderThread::Get()->RegisterExtension(new LayoutTestControllerBindings());
+}
+
+} // namespace content