Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(275)

Side by Side Diff: extensions/common/permissions/permission_message.cc

Issue 1213623006: Extensions: Remove PermissionMessage (permission_message.h/cc) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@kill_getmessages
Patch Set: fix app_shell build, rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
OLDNEW
« no previous file with comments | « extensions/common/permissions/permission_message.h ('k') | extensions/common/permissions/permission_message_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698