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

Side by Side Diff: chrome/browser/extensions/api/identity_private/identity_private_api.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "chrome/browser/extensions/api/identity_private/identity_private_api.h" 5 #include "chrome/browser/extensions/api/identity_private/identity_private_api.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "grit/generated_resources.h" 10 #include "grit/generated_resources.h"
11 #include "grit/ui_resources.h" 11 #include "grit/ui_resources.h"
12 #include "ui/base/l10n/l10n_util.h" 12 #include "ui/base/l10n/l10n_util.h"
13 #include "ui/webui/web_ui_util.h" 13 #include "ui/webui/web_ui_util.h"
14 14
15 namespace extensions { 15 namespace extensions {
16 16
17 IdentityPrivateGetResourcesFunction::IdentityPrivateGetResourcesFunction() {} 17 IdentityPrivateGetResourcesFunction::IdentityPrivateGetResourcesFunction() {}
18 18
19 IdentityPrivateGetResourcesFunction::~IdentityPrivateGetResourcesFunction() {} 19 IdentityPrivateGetResourcesFunction::~IdentityPrivateGetResourcesFunction() {}
20 20
21 bool IdentityPrivateGetResourcesFunction::RunImpl() { 21 bool IdentityPrivateGetResourcesFunction::RunImpl() {
22 DictionaryValue* result = new DictionaryValue; 22 base::DictionaryValue* result = new base::DictionaryValue;
23 23
24 result->SetString("IDR_CLOSE_DIALOG", 24 result->SetString("IDR_CLOSE_DIALOG",
25 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG)); 25 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG));
26 result->SetString("IDR_CLOSE_DIALOG_H", 26 result->SetString("IDR_CLOSE_DIALOG_H",
27 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG_H)); 27 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG_H));
28 result->SetString("IDR_CLOSE_DIALOG_P", 28 result->SetString("IDR_CLOSE_DIALOG_P",
29 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG_P)); 29 webui::GetBitmapDataUrlFromResource(IDR_CLOSE_DIALOG_P));
30 result->SetString( 30 result->SetString(
31 "IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE", 31 "IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE",
32 l10n_util::GetStringUTF16(IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE)); 32 l10n_util::GetStringUTF16(IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE));
33 33
34 SetResult(result); 34 SetResult(result);
35 return true; 35 return true;
36 } 36 }
37 37
38 } // extensions 38 } // extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698