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 string16& message)
     14   : id_(id),
     15     message_(message) {
     16 }
     17 
     18 PermissionMessage::PermissionMessage(
     19     PermissionMessage::ID id, const string16& message, const string16& details)
     20   : id_(id),
     21     message_(message),
     22     details_(details) {
     23 }
     24 
     25 PermissionMessage::~PermissionMessage() {}
     26 
     27 }  // namespace extensions
     28