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

Unified Diff: chrome/browser/extensions/extension_tab_util_android.cc

Issue 104493005: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_ui_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_tab_util_android.cc
diff --git a/chrome/browser/extensions/extension_tab_util_android.cc b/chrome/browser/extensions/extension_tab_util_android.cc
index 3997af13fb394ee6e6558b58cda3070fe23fd709..da7be3fbff76203058b4cb548d3505feb79ec375 100644
--- a/chrome/browser/extensions/extension_tab_util_android.cc
+++ b/chrome/browser/extensions/extension_tab_util_android.cc
@@ -8,8 +8,6 @@
#include "chrome/browser/sessions/session_id.h"
#include "url/gurl.h"
-using base::DictionaryValue;
-using base::ListValue;
using content::WebContents;
namespace extensions {
@@ -39,23 +37,24 @@ int ExtensionTabUtil::GetWindowIdOfTab(const WebContents* web_contents) {
}
// static
-DictionaryValue* ExtensionTabUtil::CreateTabValue(const WebContents* contents,
- TabStripModel* tab_strip,
- int tab_index,
- const Extension* extension) {
+base::DictionaryValue* ExtensionTabUtil::CreateTabValue(
+ const WebContents* contents,
+ TabStripModel* tab_strip,
+ int tab_index,
+ const Extension* extension) {
NOTIMPLEMENTED();
return NULL;
}
// static
-ListValue* ExtensionTabUtil::CreateTabList(const Browser* browser,
- const Extension* extension) {
+base::ListValue* ExtensionTabUtil::CreateTabList(const Browser* browser,
+ const Extension* extension) {
NOTIMPLEMENTED();
return NULL;
}
// static
-DictionaryValue* ExtensionTabUtil::CreateTabValue(
+base::DictionaryValue* ExtensionTabUtil::CreateTabValue(
const WebContents* contents,
TabStripModel* tab_strip,
int tab_index) {
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_ui_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698