wordpress remove views from action links in a custom post

You’ve got typo in your add_filter. Try this:

add_filter( 'post_row_actions',array(&$this, 'remove_row_actions'), 10, 1);

public function remove_row_actions($action){
    unset($action['view']);
    return $action;
}