OLD | NEW |
---|---|
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 Loading... | |
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_ |
OLD | NEW |