| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
BUG=391846
TEST=Go to whatsmyua.com on an iOS 8 device and verify that the
AppleWebKit and Safari versions in the user agent are the same in
MobileSafari and Chrome for iOS.
Review URL: https://codereview.chromium.org/558163003
Cr-Commit-Position: refs/heads/master@{#294168}
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Shared Authentication is the only supported scheme starting with M39.
This CL removes the dependency on MutableProfileOAuth2TokenService
on iOS.
BUG=233117
Review URL: https://codereview.chromium.org/489113003
Cr-Commit-Position: refs/heads/master@{#291189}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291189 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
The old implementations lived in //content, but they had no content
dependencies, so they are safe to move to //web.
BUG=390969
TEST=None
Review URL: https://codereview.chromium.org/364853010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@281824 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
| |
iOS 5 hasn't been supported for several releases, so this is always
true.
BUG=300130
Review URL: https://codereview.chromium.org/349453002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278519 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
| |
BUG=NONE
Review URL: https://codereview.chromium.org/234573003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263249 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
This CL adds the iOS implementation of the ProfileOAuth2TokenService.
BUG=NONE
Review URL: https://codereview.chromium.org/226643012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263008 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is the final patch in this series of merging the external googleurl repo
into Chromium source code base.
BUG=229660
R=brettw@chromium.org,joth@chromium.org,blundell@chromium.org,thakis@chromium.org,thestig@chromium.org
TBR=brettw
Review URL: https://chromiumcodereview.appspot.com/20349002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216922 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
directives.
This is to move back icu headers in
third_party/icu/public/{i18n,common}/unicode back to their upstream
locations in third_party/icu/source/{i18n,common}/unicode.
http://codereview.chromium.org/18836004 has is a CL to move
ICU header files.
Roll ICU to the version with the above ICU CL (http://crrev.com/211851 ).
In addition to the global replacement of third_party/icu/public with third_party/icu/source, the top-level DEPS, DEPS in printing and chrome/ are tightened up. (the latter two were too permissive (it used to allow any header from third_party/icu).
Besides, sync '-foo' list in ios/public/DEPS with '+foo' in the top-level DEPS and build/linux/unbundled/icu.gyp is updated.
BUG=251433
TEST=Compile succeeds on all bots. checkdeps.py does not find any error.
TBR=brettw,sky,wtc
Review URL: https://chromiumcodereview.appspot.com/18252003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212324 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
| |
Update googleurl references in DEPS files and update one prohibition that
had gotten out of sync.
BUG=229660
TBR=marja@chromium.org,jyasskin@chromium.org,blundell@chromium.org,zea@chromium.org
Review URL: https://chromiumcodereview.appspot.com/18919006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211611 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This interface will serve a purpose similar to that of WebContents on
content-based platforms.
This CL also changes the structure of the gypfiles under ios/ to be divided by
sub-module (e.g., base vs. chrome) rather than portion of the API layer
(consumer vs. provider). The latter structure was flawed in that it would
eventually have caused GYP to complain about circular dependencies:
provider targets from higher-level modules will have to depend on consumer
targets from lower-level modules, and consumer targets from higher-level
modules will have to depend on provider targets from lower-level modules.
Review URL: https://chromiumcodereview.appspot.com/18541002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209956 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
To better mirror the structure of other API layers (content/public and
third_party/WebKit/public), there will be a single ios/public/ directory that
contains all interfaces referenced by not-yet-upstreamed Chrome for iOS code,
rather than these interfaces being scattered in subdirectories further
underneath ios/.
This CL also changes gyp structure to better match other modules: ios_consumer.gyp is moved to directly under ios/, and an ios.gyp is created with a single top-level "ios" target to be used in build/all.gyp.
Review URL: https://chromiumcodereview.appspot.com/18272004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209434 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
|
| |
Internal implementation is done via base::SupportsUserData.
This CL also introduces ios_consumer_unittests.
Review URL: https://chromiumcodereview.appspot.com/17641002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208485 0039d316-1c4b-4281-b951-d872f2087c98
|
|
The purpose of this API is to make the iOS port less vulnerable to bustage
during merges while in the process of upstreaming (see
https://sites.google.com/a/chromium.org/dev/developers/design-documents/layered-components-technical-approach).
Review URL: https://chromiumcodereview.appspot.com/16023013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203144 0039d316-1c4b-4281-b951-d872f2087c98
|