- 29 Apr, 2015 40 commits
-
-
haibinlu authored
Depends on the Blink change: https://codereview.chromium.org/1092193003/ BUG=459008 Review URL: https://codereview.chromium.org/1084293004 Cr-Commit-Position: refs/heads/master@{#327531}
-
aiolos authored
BUG=465594 Review URL: https://codereview.chromium.org/1110843002 Cr-Commit-Position: refs/heads/master@{#327530}
-
jshin authored
When a timezone is changed by a user at the OS level, the ICU's default timezone has to be updated in both browser and renderer processes. This CL propagates the new timezone id to renderers as well as updating it in the browser process. A v8-side change is still necessary to get Intl.DateTimeFormat to work in a new timezone. BUG=406382,379595 TEST=Manual test (browser process). 1. Go to history page 2. Change the OS tz 3. Reload the history page and see if the timestamp is in a new timezone. Review URL: https://codereview.chromium.org/697203006 Cr-Commit-Position: refs/heads/master@{#327529}
-
scottmg authored
(And mark to gypi owners) TBR=mark@chromium.org Review URL: https://codereview.chromium.org/1119503002 Cr-Commit-Position: refs/heads/master@{#327528}
-
dnicoara authored
In order to allow sharing the DRM connection between browser and GPU process, we need to be able to recover from GPU crashes and gracefully handle page flipping events that were meant for the previous GPU process. BUG=445773 Review URL: https://codereview.chromium.org/1056793007 Cr-Commit-Position: refs/heads/master@{#327527}
-
limasdf authored
fullscreen state test is flaky on mac. disable it. This test does create window with fullscreen state. BUG=482433 Review URL: https://codereview.chromium.org/1111333003 Cr-Commit-Position: refs/heads/master@{#327526}
-
erikchen authored
-layout is the name of a method on NSView that performs constraint based layout. The new method's name is -layoutEntryView. BUG=471823 Review URL: https://codereview.chromium.org/1114743002 Cr-Commit-Position: refs/heads/master@{#327525}
-
sdefresne authored
Add ios/chrome/ios_strings_resources_${locale}.pak files to the repack_locales.py script and "packed_resources" target. BUG=475514 Review URL: https://codereview.chromium.org/1111823002 Cr-Commit-Position: refs/heads/master@{#327524}
-
rdevlin.cronin authored
We are now normifying extension enum property names as part of crbug.com/463184. Update the extern generator to share this same pattern. BUG=469920 Review URL: https://codereview.chromium.org/1109793003 Cr-Commit-Position: refs/heads/master@{#327523}
-
newt authored
On pre-L devices, each item in the list of search engines had too much top padding and no bottom padding. Also, on all devices, clicking a search engine didn't show a ripple or highlight. Both of these bugs have been fixed. BUG=482193 Review URL: https://codereview.chromium.org/1109263004 Cr-Commit-Position: refs/heads/master@{#327522}
-
dpranke authored
R=scottmg@chromium.org, mark@chromium.org BUG=354261 CQ_EXTRA_TRYBOTS=tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg,win_chromium_gn_x64_rel,win_chromium_gn_x64_dbg Review URL: https://codereview.chromium.org/1115533002 Cr-Commit-Position: refs/heads/master@{#327521}
-
lanwei authored
In order for us to map and track between the touch events and their ACKs, we need to set unique_event_id to WebTouchEvent when converting from TouchEvent. This patch is part of a series: patch #1: https://codereview.chromium.org/1008573002/ patch #2: This CL BUG=466711 Review URL: https://codereview.chromium.org/999423003 Cr-Commit-Position: refs/heads/master@{#327520}
-
jdduke authored
This regressed recently with the transition to the View-based pull-to-refresh implementation. Restore the proper behavior which is to suppress pull-to-refresh for fullscreen HTML5 scenarios. BUG=435732 Review URL: https://codereview.chromium.org/1084533004 Cr-Commit-Position: refs/heads/master@{#327519}
-
dnicoara authored
Removes special initialization of the primary DRM device from the GPU process. This allows us to work around sandboxing issues on initialization on ARM devices since the DRM card devices will all be sent to the sandboxed GPU via IPCs. BUG=477792, 476728 Review URL: https://codereview.chromium.org/1100973002 Cr-Commit-Position: refs/heads/master@{#327518}
-
xunjieli authored
This CL combined rdsmith@'s CL(747453004) and mef@'s CL(1073193002), and added tests to make sure sdch works for both the old and the new API. BUG=414885 Review URL: https://codereview.chromium.org/1085903002 Cr-Commit-Position: refs/heads/master@{#327517}
-
dnj authored
BUG=chromium:482180 TEST=None Review URL: https://codereview.chromium.org/1118473004 Cr-Commit-Position: refs/heads/master@{#327516}
-
tfarina authored
Turns out, Handle is just an alias for Local: https://chromium.googlesource.com/v8/v8.git/+/master/include/v8.h#334 BUG=424445 R=scheib@chromium.org Review URL: https://codereview.chromium.org/1115563002 Cr-Commit-Position: refs/heads/master@{#327515}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/385e88c..61f501f CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=humper@google.com Review URL: https://codereview.chromium.org/1114973003 Cr-Commit-Position: refs/heads/master@{#327514}
-
dtseng authored
TBR=dmazzoni@chromium.org Review URL: https://codereview.chromium.org/1113843002 Cr-Commit-Position: refs/heads/master@{#327513}
-
skyostil authored
Replace usage of MessageLoopProxy under base/ with SingleThreadTaskRunner and ThreadTaskRunnerHandle (excluding the implementation of MessageLoopProxy itself which will removed later). This patch was mostly autogenerated with https://codereview.chromium.org/1010073002. Depends on https://codereview.chromium.org/1086733002/. BUG=465354 TBR=nkostylev@chromium.org,pkasting@chromium.org,pauljensen@chromium.org Review URL: https://codereview.chromium.org/1100773004 Cr-Commit-Position: refs/heads/master@{#327512}
-
pranay.kumar authored
MessageLoopProxy is deprecated. This basically does a search and replace: MessageLoopProxy::current() -> ThreadTaskRunnerHandle::Get(). MessageLoopProxy -> SingleThreadTaskRunner BUG=391045 Review URL: https://codereview.chromium.org/1108913006 Cr-Commit-Position: refs/heads/master@{#327511}
-
maxbogue authored
This change adds a test class for SyncCustomizationFragment. Common code between this new class and SyncTest has been split out into SyncTestBase. Everything else in this CL is fixing various bugs that popped up when I tried to run the test. BUG=480604 Review URL: https://codereview.chromium.org/1060373004 Cr-Commit-Position: refs/heads/master@{#327510}
-
rdevlin.cronin authored
The current Error Console UI is a little lacking. Most egregiously, there's no way to clear errors. Update the UI by moving more of the error console into its dedicated overlay, which - Minimizes its footprint on the main page. - Makes it easy to switch between errors easily. Additionally, add support for removing specific (or all) errors associated with extensions. Screenshots are up at https://drive.google.com/open?id=0BxjK6_MzZ8UPfndZcElPVGxxdWxXQmN3WkVtSFhNUkN3SlFVYVQtaGlpWTJaOU52YTRfOGs&authuser=0 (Internal only for now; will post externally soon) BUG=482526 Review URL: https://codereview.chromium.org/1016413004 Cr-Commit-Position: refs/heads/master@{#327509}
-
scheib authored
Review URL: https://codereview.chromium.org/1111153002 Cr-Commit-Position: refs/heads/master@{#327508}
-
charliea authored
BUG=478827 Review URL: https://codereview.chromium.org/1108823006 Cr-Commit-Position: refs/heads/master@{#327507}
-
payal.pandey authored
Bescause base/strings/string_split.h defines: typedef std::vector<std::pair<std::string, std::string> > StringPairs; BUG=412250 Review URL: https://codereview.chromium.org/1109353002 Cr-Commit-Position: refs/heads/master@{#327506}
-
glider authored
TBR=danakj@chromium.org BUG=None Review URL: https://codereview.chromium.org/1115693002 Cr-Commit-Position: refs/heads/master@{#327505}
-
dgn authored
The new check warns for new log usages that don't use base.Log The documentation is added in-tree as a markdown file BUG=472152 Review URL: https://codereview.chromium.org/1114593002 Cr-Commit-Position: refs/heads/master@{#327504}
-
bnc authored
Remove HttpNetworkSession::Params::spdy_max_concurrent_streams_limit, SpdySessionPool::max_concurrent_streams_limit_, and SpdySession::max_concurrent_streams_limit_ members. Note that SETTINGS_MAX_CONCURRENT_STREAMS is still limited by kMaxConcurrentStreamLimit, currently 256. BUG=481005 Review URL: https://codereview.chromium.org/1112093002 Cr-Commit-Position: refs/heads/master@{#327503}
-
jbudorick authored
BUG=481960 Review URL: https://codereview.chromium.org/1108053005 Cr-Commit-Position: refs/heads/master@{#327502}
-
jbudorick authored
BUG=267773,482367,482406 Review URL: https://codereview.chromium.org/1112843002 Cr-Commit-Position: refs/heads/master@{#327501}
-
dtapuska authored
Store the gaia logout url request so the URLFetcher object isn't leaked. BUG=482459 TEST=google_api_unittests Review URL: https://codereview.chromium.org/1108053003 Cr-Commit-Position: refs/heads/master@{#327500}
-
dalecurtis authored
We did not end up using this code for video frame rendering. BUG=none TEST=compiles, existing tests pass. Review URL: https://codereview.chromium.org/1111993002 Cr-Commit-Position: refs/heads/master@{#327499}
-
mlerman authored
BUG=481721 Review URL: https://codereview.chromium.org/1106213003 Cr-Commit-Position: refs/heads/master@{#327498}
-
glevin authored
BUG=465607 Sets up logged in user and cellular network for testing, verifies that the Data Saver prompt notification is shown once cellular becomes the connected, default network. Review URL: https://codereview.chromium.org/1108123003 Cr-Commit-Position: refs/heads/master@{#327497}
-
skyostil authored
This makes it possible to later migrate base/ from MessageLoopProxy over to ThreadTaskRunnerHandle, which requires an active task runner on the current thread. TBR=msw@chromium.org BUG=465354 Review URL: https://codereview.chromium.org/1114993002 Cr-Commit-Position: refs/heads/master@{#327496}
-
msarda authored
This CL adds observers Bluetooth device changed and device removed notifications. Each time a device changes, it checks if the device advertises the Smart Lock service UUID. If so and if there is no pending connection to that device, then it tries to connect to it. This CL also forgets the Bluetooth device that advertises Smart Lock. This ensures that the device is disconnected and its entry removed fron the Bluetooth device controller. Note that this strategy is fine as Bluetooth Low Energy device that advertises Smart Lock service UUID is only used by the Proximity Auth component. TEST=On Chrome OS, turn on Smart Lock over Bluetooth Low Energy in settings. Install a Smart Lock app on a BLE device. On Chrome OS, sign in and then lock the screen. Start the Smart Lock app on a BLE device and observe that Chrome OS magically unlocks. BUG=479670 Review URL: https://codereview.chromium.org/1113793002 Cr-Commit-Position: refs/heads/master@{#327495}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/ecb8e3e..385e88c CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=humper@google.com Review URL: https://codereview.chromium.org/1117693002 Cr-Commit-Position: refs/heads/master@{#327494}
-
pdr authored
This patch adds a smoothness benchmark with slimming paint. BUG=464910 CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect; Review URL: https://codereview.chromium.org/1114713002 Cr-Commit-Position: refs/heads/master@{#327493}
-
reveman authored
Leave it up to the implementation of this interface to determine if assignment and copy should be disallowed. BUG= Review URL: https://codereview.chromium.org/1107403003 Cr-Commit-Position: refs/heads/master@{#327492}
-