Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/install_static/install_details.h" | |
| 6 | |
| 7 extern "C" const install_static::InstallDetails::Payload __declspec(dllexport) * | |
|
Sigurður Ásgeirsson
2017/01/16 18:31:58
yeah, I don't like the dllexport declarations, nor
grt (UTC plus 2)
2017/01/16 20:27:33
Removed in favor of .def file. The linker error wa
| |
| 8 GetInstallDetailsPayload() { | |
| 9 return install_static::InstallDetails::Get().GetPayload(); | |
| 10 } | |
| OLD | NEW |