Home | History | Annotate | Download | only in permissions
      1 // Copyright 2013 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 "extensions/common/permissions/permission_message.h"
      6 
      7 namespace extensions {
      8 //
      9 // PermissionMessage
     10 //
     11 
     12 PermissionMessage::PermissionMessage(
     13     PermissionMessage::ID id, const base::string16& message)
     14   : id_(id),
     15     message_(message) {
     16 }
     17 
     18 PermissionMessage::PermissionMessage(
     19     PermissionMessage::ID id,
     20     const base::string16& message,
     21     const base::string16& details)
     22   : id_(id),
     23     message_(message),
     24     details_(details) {
     25 }
     26 
     27 PermissionMessage::~PermissionMessage() {}
     28 
     29 }  // namespace extensions
     30