| 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 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/timer/timer.h" | 13 #include "base/timer/timer.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "content/browser/browser_process_sub_thread.h" | 15 #include "content/browser/browser_process_sub_thread.h" |
| 16 #include "content/public/browser/browser_main_runner.h" | 16 #include "content/public/browser/browser_main_runner.h" |
| 17 #include "services/resource_coordinator/memory/coordinator/coordinator_impl.h" | |
| 18 | 17 |
| 19 #if defined(USE_AURA) | 18 #if defined(USE_AURA) |
| 20 namespace aura { | 19 namespace aura { |
| 21 class Env; | 20 class Env; |
| 22 } | 21 } |
| 23 #endif | 22 #endif |
| 24 | 23 |
| 25 namespace base { | 24 namespace base { |
| 26 class CommandLine; | 25 class CommandLine; |
| 27 class FilePath; | 26 class FilePath; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 46 class SystemMessageWindowWin; | 45 class SystemMessageWindowWin; |
| 47 #elif defined(OS_LINUX) && defined(USE_UDEV) | 46 #elif defined(OS_LINUX) && defined(USE_UDEV) |
| 48 class DeviceMonitorLinux; | 47 class DeviceMonitorLinux; |
| 49 #endif | 48 #endif |
| 50 class UserInputMonitor; | 49 class UserInputMonitor; |
| 51 #if defined(OS_MACOSX) | 50 #if defined(OS_MACOSX) |
| 52 class DeviceMonitorMac; | 51 class DeviceMonitorMac; |
| 53 #endif | 52 #endif |
| 54 } // namespace media | 53 } // namespace media |
| 55 | 54 |
| 55 namespace memory_instrumentation { |
| 56 class CoordinatorImpl; |
| 57 } // memory_instrumentation |
| 58 |
| 56 namespace midi { | 59 namespace midi { |
| 57 class MidiService; | 60 class MidiService; |
| 58 } // namespace midi | 61 } // namespace midi |
| 59 | 62 |
| 60 namespace mojo { | 63 namespace mojo { |
| 61 namespace edk { | 64 namespace edk { |
| 62 class ScopedIPCSupport; | 65 class ScopedIPCSupport; |
| 63 } // namespace edk | 66 } // namespace edk |
| 64 } // namespace mojo | 67 } // namespace mojo |
| 65 | 68 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 memory_instrumentation_coordinator_; | 321 memory_instrumentation_coordinator_; |
| 319 | 322 |
| 320 // DO NOT add members here. Add them to the right categories above. | 323 // DO NOT add members here. Add them to the right categories above. |
| 321 | 324 |
| 322 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 325 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
| 323 }; | 326 }; |
| 324 | 327 |
| 325 } // namespace content | 328 } // namespace content |
| 326 | 329 |
| 327 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 330 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
| OLD | NEW |