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

Side by Side Diff: content/shell/shell_browser_main.h

Issue 9289045: Add option --dump-render-tree to content_shell to dump the render tree as text. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 5 #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
6 #define CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 6 #define CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 28 matching lines...) Expand all
39 virtual void PostMainMessageLoopRun() OVERRIDE; 39 virtual void PostMainMessageLoopRun() OVERRIDE;
40 virtual void PostDestroyThreads() OVERRIDE {} 40 virtual void PostDestroyThreads() OVERRIDE {}
41 41
42 ui::Clipboard* GetClipboard(); 42 ui::Clipboard* GetClipboard();
43 43
44 private: 44 private:
45 scoped_ptr<ShellBrowserContext> browser_context_; 45 scoped_ptr<ShellBrowserContext> browser_context_;
46 46
47 scoped_ptr<ui::Clipboard> clipboard_; 47 scoped_ptr<ui::Clipboard> clipboard_;
48 48
49 bool dump_as_text_;
jam 2012/01/26 18:47:34 do we really need a member variable for this, inst
jochen (gone - plz use gerrit) 2012/01/27 08:49:56 Done.
50
49 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); 51 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts);
50 }; 52 };
51 53
52 } // namespace content 54 } // namespace content
53 55
54 #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 56 #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698