OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 7 #pragma once |
8 | 8 |
9 #include "content/common/main_function_params.h" | 9 #include "content/common/main_function_params.h" |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 private: | 31 private: |
32 const MainFunctionParams& parameters_; | 32 const MainFunctionParams& parameters_; |
33 #if defined(OS_WIN) | 33 #if defined(OS_WIN) |
34 HMODULE sandbox_test_module_; | 34 HMODULE sandbox_test_module_; |
35 #endif | 35 #endif |
36 | 36 |
37 DISALLOW_COPY_AND_ASSIGN(RendererMainPlatformDelegate); | 37 DISALLOW_COPY_AND_ASSIGN(RendererMainPlatformDelegate); |
38 }; | 38 }; |
39 | 39 |
40 #endif // CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ | 40 #endif // CHROME_RENDERER_RENDERER_MAIN_PLATFORM_DELEGATE_H_ |
OLD | NEW |