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 CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ | 5 #ifndef CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ |
6 #define CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ | 6 #define CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ |
7 #pragma once | |
8 | 7 |
9 #include "build/build_config.h" | 8 #include "build/build_config.h" |
10 | 9 |
11 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
12 #include <windows.h> | 11 #include <windows.h> |
13 #endif | 12 #endif |
14 | 13 |
15 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
16 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
17 #include "content/public/common/main_function_params.h" | 16 #include "content/public/common/main_function_params.h" |
(...skipping 30 matching lines...) Expand all Loading... |
48 #if defined(OS_WIN) | 47 #if defined(OS_WIN) |
49 HMODULE sandbox_test_module_; | 48 HMODULE sandbox_test_module_; |
50 #elif defined(OS_MACOSX) | 49 #elif defined(OS_MACOSX) |
51 NSBundle* sandbox_tests_bundle_; | 50 NSBundle* sandbox_tests_bundle_; |
52 #endif | 51 #endif |
53 | 52 |
54 DISALLOW_COPY_AND_ASSIGN(RendererMainPlatformDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(RendererMainPlatformDelegate); |
55 }; | 54 }; |
56 | 55 |
57 #endif // CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ | 56 #endif // CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ |
OLD | NEW |