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

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

Issue 107803004: Add base:: to string16 in extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove a using Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "extensions/common/permissions/permission_message.h" 5 #include "extensions/common/permissions/permission_message.h"
6 6
7 namespace extensions { 7 namespace extensions {
8 // 8 //
9 // PermissionMessage 9 // PermissionMessage
10 // 10 //
11 11
12 PermissionMessage::PermissionMessage( 12 PermissionMessage::PermissionMessage(
13 PermissionMessage::ID id, const string16& message) 13 PermissionMessage::ID id, const base::string16& message)
14 : id_(id), 14 : id_(id),
15 message_(message) { 15 message_(message) {
16 } 16 }
17 17
18 PermissionMessage::PermissionMessage( 18 PermissionMessage::PermissionMessage(
19 PermissionMessage::ID id, const string16& message, const string16& details) 19 PermissionMessage::ID id,
20 const base::string16& message,
21 const base::string16& details)
20 : id_(id), 22 : id_(id),
21 message_(message), 23 message_(message),
22 details_(details) { 24 details_(details) {
23 } 25 }
24 26
25 PermissionMessage::~PermissionMessage() {} 27 PermissionMessage::~PermissionMessage() {}
26 28
27 } // namespace extensions 29 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/common/permissions/permission_message.h ('k') | extensions/common/permissions/permission_message_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698