| 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 #include "chrome/common/child_process_logging.h" | 5 #include "chrome/common/child_process_logging.h" |
| 6 | 6 |
| 7 #include "base/string_number_conversions.h" | 7 #include "base/string_number_conversions.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/installer/util/google_update_settings.h" | 10 #include "chrome/installer/util/google_update_settings.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 strncpy(g_gpu_vs_ver, | 71 strncpy(g_gpu_vs_ver, |
| 72 gpu_info.vertex_shader_version.c_str(), | 72 gpu_info.vertex_shader_version.c_str(), |
| 73 kGpuStringSize - 1); | 73 kGpuStringSize - 1); |
| 74 g_gpu_vs_ver[kGpuStringSize - 1] = '\0'; | 74 g_gpu_vs_ver[kGpuStringSize - 1] = '\0'; |
| 75 } | 75 } |
| 76 | 76 |
| 77 void SetNumberOfViews(int number_of_views) { | 77 void SetNumberOfViews(int number_of_views) { |
| 78 // TODO(port) | 78 // TODO(port) |
| 79 } | 79 } |
| 80 | 80 |
| 81 void SetCommandLine(const CommandLine*) { |
| 82 // TODO: http://crbug.com/60993 |
| 83 NOTIMPLEMENTED(); |
| 84 } |
| 85 |
| 81 } // namespace child_process_logging | 86 } // namespace child_process_logging |
| OLD | NEW |