OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_BROWSER_MAIN_LOOP_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
11 #include "content/browser/browser_process_sub_thread.h" | 10 #include "content/browser/browser_process_sub_thread.h" |
12 | 11 |
13 #if defined(OS_WIN) | 12 #if defined(OS_WIN) |
14 #include "ui/base/win/scoped_ole_initializer.h" | 13 #include "ui/base/win/scoped_ole_initializer.h" |
15 #endif | 14 #endif |
16 | 15 |
17 class BrowserOnlineStateObserver; | 16 class BrowserOnlineStateObserver; |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 #if defined(OS_WIN) | 131 #if defined(OS_WIN) |
133 ui::ScopedOleInitializer ole_initializer_; | 132 ui::ScopedOleInitializer ole_initializer_; |
134 #endif | 133 #endif |
135 | 134 |
136 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 135 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
137 }; | 136 }; |
138 | 137 |
139 } // namespace content | 138 } // namespace content |
140 | 139 |
141 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 140 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |