Change record status: 
Project: 
Introduced in branch: 
8.0.x
Introduced in version: 
8.0-alpha14
Description: 

The constants COMMENT_FORM_BELOW and COMMENT_FORM_SEPARATE_PAGE were moved to the Drupal\comment\Plugin\Field\FieldType\CommentItem class as FORM_BELOW and FORM_SEPARATE_PAGE.

Drupal 7

function mymodule_some_function($form_location) {
  if ($form_location == COMMENT_FORM_BELOW) {
    // Do something.
  }
}

Drupal 8

use Drupal\comment\Plugin\Field\FieldType\CommentItem;

function mymodule_some_function($form_location) {
  if ($form_location == CommentItem::FORM_BELOW) {
    // Do something.
  }
}
Impacts: 
Module developers