- 25 Feb, 2015 40 commits
-
-
bratell authored
Followup to https://codereview.chromium.org/920963003 which removed media/base/scoped_histogram_timer.h. R=rkaplov@chromium.org,dalecurtis@chromium.org BUG=459058 Review URL: https://codereview.chromium.org/948423002 Cr-Commit-Position: refs/heads/master@{#318016}
-
blundell authored
//build/module_args/mojo.gni is the canonical place for setting information that might differ between repos, such as the location of the Mojo SDK. Review URL: https://codereview.chromium.org/956573002 Cr-Commit-Position: refs/heads/master@{#318015}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/675f7d2d..fbb26b21 Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/957703002 Cr-Commit-Position: refs/heads/master@{#318014}
-
vitalybuka authored
PrivetHTTPAsynchronousFactoryImpl can use ServiceDiscoverySharedClient::GetInstance. Also we don't use this for testing, so we can simplify interface. BUG=461504 Review URL: https://codereview.chromium.org/959503003 Cr-Commit-Position: refs/heads/master@{#318013}
-
merkulova authored
Following the bug discussion the photo was slightly changed. BUG=151287 Review URL: https://codereview.chromium.org/951303002 Cr-Commit-Position: refs/heads/master@{#318012}
-
tkent authored
It was removed by #317969. The test result is updated due to Blink r190795. Difference of the test result: - state, expire_month, expire_year have values of the second OPTION element, not the first OPTION element. BUG=461586 TBR=estade@chromium.org Review URL: https://codereview.chromium.org/959623002 Cr-Commit-Position: refs/heads/master@{#318011}
-
sammc authored
BUG=11746 Review URL: https://codereview.chromium.org/918933002 Cr-Commit-Position: refs/heads/master@{#318010}
-
vabr authored
This CL removes CheckPasswordChangesWithResult, because unlike in the other native backend tests, this method was not used inside base::Bind, and so is less useful than confusing. It also removes a global std::vector in favour of replacing it with a pointer to a test-owned instance, and turns that instance into a ScopedVector. BUG=461385 Review URL: https://codereview.chromium.org/951883005 Cr-Commit-Position: refs/heads/master@{#318009}
-
vkuzkokov authored
BUG=458979 Review URL: https://codereview.chromium.org/925483002 Cr-Commit-Position: refs/heads/master@{#318008}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/341bffc..648ff04 TBR=hiroshige@chromium.org,arv@chromium.org Review URL: https://codereview.chromium.org/959603002 Cr-Commit-Position: refs/heads/master@{#318007}
-
mtomasz authored
Before, the entire vertical bar was accepting clicks, so it was hard to select items in grid view when starting from far right. TEST=Tested manually by trying to click around the scrollbar thumb (button). BUG=461728 Review URL: https://codereview.chromium.org/956843002 Cr-Commit-Position: refs/heads/master@{#318006}
-
hirono authored
The CL just adds new metadata model as a member varaiables of gallery models. The following CL replaces existing metadata model with the new model. BUG=410766 TEST=None Review URL: https://codereview.chromium.org/944163004 Cr-Commit-Position: refs/heads/master@{#318005}
-
christiank authored
This CL adds support for compressed GPU buffer formats. BUG=434699 Committed: https://crrev.com/3113db1250a2687c030585f6045f2ef242b98db6 Cr-Commit-Position: refs/heads/master@{#317765} Review URL: https://codereview.chromium.org/916083002 Cr-Commit-Position: refs/heads/master@{#318004}
-
hirono authored
Previously the image DOM in the list is removed for reusing for another item unintentionally. Thanks to ListThumbnailLoader we no longer need to reuse DOM. BUG=461338 TEST=None Review URL: https://codereview.chromium.org/955933002 Cr-Commit-Position: refs/heads/master@{#318003}
-
pneubeck authored
This removes all includes from $X.cc files where the $X.h has the same include to conform to the style guide: "[...] However, any includes present in the related header do not need to be included again in the related cc (i.e., foo.cc can rely on foo.h's includes)." BUG=460988 Review URL: https://codereview.chromium.org/947173002 Cr-Commit-Position: refs/heads/master@{#318002}
-
tengs authored
This id should not change if the same user is removed and added to the same device. BUG=455515 TEST=removed account, added account back and id is still the same Review URL: https://codereview.chromium.org/877033005 Cr-Commit-Position: refs/heads/master@{#318001}
-
jackhou authored
Other platforms renamed their class names in r251542: https://codereview.chromium.org/166573005 BUG=344082 Review URL: https://codereview.chromium.org/918063002 Cr-Commit-Position: refs/heads/master@{#318000}
-
hirono authored
BUG=410766 TEST=None Review URL: https://codereview.chromium.org/957663003 Cr-Commit-Position: refs/heads/master@{#317999}
-
nyquist authored
Currently the adb_remote_setup.sh uses the SVN repository to update itself. Given that chromium has moved hosting to use git, it should use that repository as its canonical source. Gitiles currently does not have support for directly downloading the raw contents of a file, but it is possible to download it as base64 encoded data. This is a security precaution to ensure that browsers do not accidentally act upon the downloaded data. More info can be found in this issue: https://code.google.com/p/gitiles/issues/detail?id=7 This CL updates the canonical script URL, and changes the update-self function to base64 decode the downloaded data before storing it in the new script file. BUG=None Review URL: https://codereview.chromium.org/926973002 Cr-Commit-Position: refs/heads/master@{#317998}
-
kenobi authored
Break a circular reference which was causing FileManagerPrivateComputeChecksumFunction to never be cleaned up. This, in turn, was holding open one file stream for every file for which a content checksum was requested. BUG=458624 Review URL: https://codereview.chromium.org/950423003 Cr-Commit-Position: refs/heads/master@{#317997}
-
nektar authored
Fixed IAccessibleText::TextAtOffset with IA2_TEXT_BOUNDARY_WORD to return text that spans from the start of one word to the start of the next. BUG=347852 R=dmazzoni@chromium.org Review URL: https://codereview.chromium.org/660633002 Cr-Commit-Position: refs/heads/master@{#317996}
-
mtomasz authored
Before, we were not notifying Files app about such fact, so it was still thinking that Drive is not available, and showing the banner. TEST=Tested manually when logging to an empty profile. BUG=461247 Review URL: https://codereview.chromium.org/953273002 Cr-Commit-Position: refs/heads/master@{#317995}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/614cd2f..341bffc TBR=hiroshige@chromium.org,arv@chromium.org Review URL: https://codereview.chromium.org/940153003 Cr-Commit-Position: refs/heads/master@{#317994}
-
pkasting authored
also ask it to restore saved state. This eliminates the BrowserContentTranslateDriverObserver class in favor of just implementing this on Browser directly as various other such observer implementations do -- allowing the code to call the UpdateToolbar() method instead of BrowserWindow::UpdateToolbar(), whose correct use is slightly less clear. BUG=459445 TEST=See steps on bug comment 22. In step 1, be sure to restart Chrome after changing the language, and then set Chrome to prompt to translate pages in English. Review URL: https://codereview.chromium.org/949653003 Cr-Commit-Position: refs/heads/master@{#317993}
-
zhuoyu.qian authored
As the comment in extension_warning_badge_service.h by battre@, rename ExtensionWarningBadgeService to WarningBadgeService and related class. And rename the files too. BUG=458829 R=rockot@chromium.org Review URL: https://codereview.chromium.org/921423003 Cr-Commit-Position: refs/heads/master@{#317992}
-
mgiuca authored
BUG=425444 Review URL: https://codereview.chromium.org/953743003 Cr-Commit-Position: refs/heads/master@{#317991}
-
sammc authored
BUG=11746 Review URL: https://codereview.chromium.org/904313003 Cr-Commit-Position: refs/heads/master@{#317990}
-
zhuoyu.qian authored
Sync no longer has a concept of "acknowledged types". BUG=352818 R=stanisc@chromium.org, maniscalco@chromium.org Review URL: https://codereview.chromium.org/919383002 Cr-Commit-Position: refs/heads/master@{#317989}
-
xiang.long authored
A provider host which hosts a running service worker has its document URL set to the script's URL now. So check it explicitly to avoid DCHECK fail. BUG=459244 Review URL: https://codereview.chromium.org/947953003 Cr-Commit-Position: refs/heads/master@{#317988}
-
kenobi authored
Fix test.util.registerRemoteTestUtils so external messages get propagated to all listeners. Fix notification callback code to open files app in the right location when an import is initiated from a notification click. BUG=459359 Review URL: https://codereview.chromium.org/959493004 Cr-Commit-Position: refs/heads/master@{#317987}
-
zhuoyu.qian authored
Now we don't have the integer session_id anymore, there's no need to have a separate name. So rename web_session_id to session_id. BUG=440510 R=xhwang@chromium.org Review URL: https://codereview.chromium.org/903663002 Cr-Commit-Position: refs/heads/master@{#317986}
-
dyen authored
R=kbr@chromium.org, vmiura@chromium.org BUG=459778 TEST=chromote locally with enableVideoDecodeRenderer Review URL: https://codereview.chromium.org/954073002 Cr-Commit-Position: refs/heads/master@{#317985}
-
jchuang authored
Also compile PPB_CameraDevice_Private and PPB_CameraCapabilities_Private in NACL. BUG=387547 TEST=Test with a trusted plugin. (Haven't tested on NaCl) Review URL: https://codereview.chromium.org/944033002 Cr-Commit-Position: refs/heads/master@{#317984}
-
newt authored
And reduce my TODO count in the process. Review URL: https://codereview.chromium.org/955873002 Cr-Commit-Position: refs/heads/master@{#317983}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/a7dac35..614cd2f TBR=hiroshige@chromium.org,arv@chromium.org Review URL: https://codereview.chromium.org/956783002 Cr-Commit-Position: refs/heads/master@{#317982}
-
isherman authored
BUG=450508 TEST=none R=tengs@chromium.org Review URL: https://codereview.chromium.org/938223002 Cr-Commit-Position: refs/heads/master@{#317981}
-
aelias authored
Unfortunately, an OEM Lollipop build on an SGX 544 shipped without fixing the driver bug causing GPU raster to be incorrect, so unconditionally blacklist PowerVR SGX GPUs. BUG=461456 Review URL: https://codereview.chromium.org/949423002 Cr-Commit-Position: refs/heads/master@{#317980}
-
jaekyun authored
- adds test activity layout into real view hierarchy. - runs tests after Activity.onCreate() is done. - doesn't load a default URL when testing. - enables TouchInputBrowserTest by setting initial scale for Android. - disables ScreenOrientationBrowserTest because it uses --disable-gpu - updates expected results of DumpAccessibilityTreeTest BUG=338011 Review URL: https://codereview.chromium.org/888793002 Cr-Commit-Position: refs/heads/master@{#317979}
-
zhuoyu.qian authored
File file_stream_reader and local_file_stream_reader was in storage/browser/blob, move them to storage/browser/fileapi, make it more understandable. BUG=456634 Review URL: https://codereview.chromium.org/908833002 Cr-Commit-Position: refs/heads/master@{#317978}
-
mariakhomenko authored
Review URL: https://codereview.chromium.org/951143004 Cr-Commit-Position: refs/heads/master@{#317977}
-