summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authorcourage@chromium.org <courage@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-25 13:59:26 +0000
committercourage@chromium.org <courage@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-25 13:59:26 +0000
commit2e3a667d902b97378438f57d37c47adcb1138304 (patch)
treec4f1ac668055698f98b916e4f60669cf61aa5b1e /chrome/common
parentb4e1f7e0884b5e7f42aa210e16a0de294ddd758c (diff)
downloadchromium_src-2e3a667d902b97378438f57d37c47adcb1138304.zip
chromium_src-2e3a667d902b97378438f57d37c47adcb1138304.tar.gz
chromium_src-2e3a667d902b97378438f57d37c47adcb1138304.tar.bz2
Revert "Identity API: Add component app for auth flow UI"
This reverts change 201736, which causes a working set size regression. BUG=243575 TBR=tonyg@chromium.org, miket@chromium.org Review URL: https://chromiumcodereview.appspot.com/15962012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202273 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/extensions/api/_permission_features.json7
-rw-r--r--chrome/common/extensions/api/api.gyp1
-rw-r--r--chrome/common/extensions/api/identity_private.idl20
-rw-r--r--chrome/common/extensions/extension_constants.cc1
-rw-r--r--chrome/common/extensions/extension_constants.h3
-rw-r--r--chrome/common/extensions/permissions/api_permission.h1
-rw-r--r--chrome/common/extensions/permissions/chrome_api_permissions.cc2
-rw-r--r--chrome/common/extensions/permissions/permission_set_unittest.cc1
8 files changed, 0 insertions, 36 deletions
diff --git a/chrome/common/extensions/api/_permission_features.json b/chrome/common/extensions/api/_permission_features.json
index b80d05a..e750a7f 100644
--- a/chrome/common/extensions/api/_permission_features.json
+++ b/chrome/common/extensions/api/_permission_features.json
@@ -234,13 +234,6 @@
"channel": "stable",
"extension_types": ["extension", "packaged_app"]
},
- "identityPrivate": {
- "channel": "stable",
- "extension_types": [
- "packaged_app"
- ],
- "location": "component"
- },
"idle": {
"channel": "stable",
"extension_types": ["extension", "packaged_app", "platform_app"]
diff --git a/chrome/common/extensions/api/api.gyp b/chrome/common/extensions/api/api.gyp
index 35cf75b..929039b 100644
--- a/chrome/common/extensions/api/api.gyp
+++ b/chrome/common/extensions/api/api.gyp
@@ -62,7 +62,6 @@
'history.json',
'i18n.json',
'identity.idl',
- 'identity_private.idl',
'idle.json',
'managed_mode_private.json',
'management.json',
diff --git a/chrome/common/extensions/api/identity_private.idl b/chrome/common/extensions/api/identity_private.idl
deleted file mode 100644
index 2f44ffe..0000000
--- a/chrome/common/extensions/api/identity_private.idl
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-namespace identityPrivate {
-
- callback GetResourcesCallback = void (object result);
-
- interface Functions {
- // Gets resources required to render the API.
- //
- // |callback| : Called with a dictionary mapping names to resource strings.
- static void getResources(GetResourcesCallback callback);
- };
-
- interface Events {
- // Fired when a web flow dialog should be displayed.
- static void onWebFlowRequest(DOMString key, DOMString url, DOMString mode);
- };
-};
diff --git a/chrome/common/extensions/extension_constants.cc b/chrome/common/extensions/extension_constants.cc
index b96cdba..5f631ed 100644
--- a/chrome/common/extensions/extension_constants.cc
+++ b/chrome/common/extensions/extension_constants.cc
@@ -141,7 +141,6 @@ const char kGoogleSheetsAppId[] = "felcaaldnbdncclmgdcncolpebgiejap";
const char kGoogleSlidesAppId[] = "aapocclcgogkmnckokdopfmhonfmgoek";
const char kHTermAppId[] = "pnhechapfaindjhompbnflcldabbghjo";
const char kHTermDevAppId[] = "okddffdblfhhnmhodogpojmfkjmhinfp";
-const char kIdentityApiUiAppId[] = "ahjaciijnoiaklcomgnblndopackapon";
const char kCroshBuiltinAppId[] = "nkoccljplnhpfnfiajclkommnmllphnl";
const char kQuickOfficeComponentExtensionId[] =
"bpmcpldpdmajfigpchkicefoigmkfalc";
diff --git a/chrome/common/extensions/extension_constants.h b/chrome/common/extensions/extension_constants.h
index a545d0a..1d34470 100644
--- a/chrome/common/extensions/extension_constants.h
+++ b/chrome/common/extensions/extension_constants.h
@@ -167,9 +167,6 @@ namespace extension_misc {
// The extension id of the Youtube application.
extern const char kYoutubeAppId[];
- // The extension id of the Identity API UI application.
- extern const char kIdentityApiUiAppId[];
-
// The extension id of the in-app payments support application.
extern const char kInAppPaymentsSupportAppId[];
diff --git a/chrome/common/extensions/permissions/api_permission.h b/chrome/common/extensions/permissions/api_permission.h
index 145d0d0..c8777d8 100644
--- a/chrome/common/extensions/permissions/api_permission.h
+++ b/chrome/common/extensions/permissions/api_permission.h
@@ -80,7 +80,6 @@ class APIPermission {
kGeolocation,
kHistory,
kIdentity,
- kIdentityPrivate,
kIdle,
kInput,
kInputMethodPrivate,
diff --git a/chrome/common/extensions/permissions/chrome_api_permissions.cc b/chrome/common/extensions/permissions/chrome_api_permissions.cc
index 1491ebb..37f4a47 100644
--- a/chrome/common/extensions/permissions/chrome_api_permissions.cc
+++ b/chrome/common/extensions/permissions/chrome_api_permissions.cc
@@ -141,8 +141,6 @@ std::vector<APIPermissionInfo*> ChromeAPIPermissions::GetAllPermissions()
APIPermissionInfo::kFlagCannotBeOptional },
{ APIPermission::kFileBrowserPrivate, "fileBrowserPrivate",
APIPermissionInfo::kFlagCannotBeOptional },
- { APIPermission::kIdentityPrivate, "identityPrivate",
- APIPermissionInfo::kFlagCannotBeOptional },
{ APIPermission::kNetworkingPrivate, "networkingPrivate",
APIPermissionInfo::kFlagCannotBeOptional },
{ APIPermission::kManagedModePrivate, "managedModePrivate",
diff --git a/chrome/common/extensions/permissions/permission_set_unittest.cc b/chrome/common/extensions/permissions/permission_set_unittest.cc
index b08448c..7dae356 100644
--- a/chrome/common/extensions/permissions/permission_set_unittest.cc
+++ b/chrome/common/extensions/permissions/permission_set_unittest.cc
@@ -689,7 +689,6 @@ TEST(PermissionsTest, PermissionMessages) {
skip.insert(APIPermission::kEnterprisePlatformKeysPrivate);
skip.insert(APIPermission::kFileBrowserHandlerInternal);
skip.insert(APIPermission::kFileBrowserPrivate);
- skip.insert(APIPermission::kIdentityPrivate);
skip.insert(APIPermission::kInputMethodPrivate);
skip.insert(APIPermission::kManagedModePrivate);
skip.insert(APIPermission::kMediaGalleriesPrivate);