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/common/extensions/api/webstore/webstore_api_constants.h" | |
| 6 #include "chrome/common/extensions/webstore_install_result.h" | |
| 7 #include "ipc/ipc_message_macros.h" | |
| 8 | |
| 9 IPC_ENUM_TRAITS_MAX_VALUE( | |
|
Devlin
2017/04/12 01:16:07
It still seems like we should only need this *or*
| |
| 10 extensions::api::webstore::InstallStage, | |
| 11 extensions::api::webstore::InstallStage::INSTALL_STAGE_INSTALLING) | |
| 12 IPC_ENUM_TRAITS_MAX_VALUE(extensions::webstore_install::Result, | |
| 13 extensions::webstore_install::RESULT_LAST) | |
| OLD | NEW |