- 09 Aug, 2012 40 commits
-
-
falken@chromium.org authored
As suggested by UI leads. The goal is to put the sample extension in the Web Store, but it must be polished up a little first. BUG=114805 TBR=mpcomplete Review URL: https://chromiumcodereview.appspot.com/10834241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150759 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
Currently it just checks the filename duplication and adding numbers (1),(2),... in case of duplication. But this doesn't work well if the file will be stored into GoogleDrive, since file operations are not atomic there. This CL does the followings: - the screenshot taker accepts "taking a screenshot for each root window" requests rather than taking a screenshot for the specified window - adding the number in case of multiple root-windows, in screenshot taker side - change the screenshot interval from 500msec -> 1sec, to avoid the duplication - remove the existing filename duplication checking code, which is no longer necessary BUG=140749 Review URL: https://chromiumcodereview.appspot.com/10827193 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150758 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
Actually this feature is described in the "keyboard shortcut" section in GSG, so it's expected to work in production too. See crbug.com/128436 for the details. BUG=128436 Review URL: https://chromiumcodereview.appspot.com/10831208 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150757 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
BUG=141574 TBR=cduvall@chromium.org Review URL: https://chromiumcodereview.appspot.com/10827245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150756 0039d316-1c4b-4281-b951-d872f2087c98
-
haruki@chromium.org authored
BUG=138418 TEST=unit_tests Review URL: https://chromiumcodereview.appspot.com/10829233 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150755 0039d316-1c4b-4281-b951-d872f2087c98
-
vandebo@chromium.org authored
BUG=141322 TBR=thestig@chromium.org NOTRY=TRUE Review URL: https://chromiumcodereview.appspot.com/10826221 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150754 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremya@chromium.org authored
TBR=vitalybuka@chromium.org Review URL: https://chromiumcodereview.appspot.com/10825271 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150753 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150752 0039d316-1c4b-4281-b951-d872f2087c98
-
toyoshim@chromium.org authored
TBR=fmalita@chromium.org Review URL: https://chromiumcodereview.appspot.com/10855069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150751 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
TBR=aa@chromium.org Review URL: https://chromiumcodereview.appspot.com/10825269 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150750 0039d316-1c4b-4281-b951-d872f2087c98
-
ttuttle@chromium.org authored
Don't trust most non-success responses to a CONNECT request -- as the BUG= explains, the rest of the stack will treat the response as if it came from the target server, not the proxy. This trivially lets a proxy run code as any HTTPS site the user tries to connect to, which is Very Bad
™ . Do, however, accept 302 responses, but sanitize them so they contain only the Location header and no response body. Many proxies use this for login pages, so we can't break it. Update the HttpProxyClientSocketPool unittests to expect failure in all but the 302 case, and add a 302-specific test case. BUG=137891 TEST=Added cases to Http- and SpdyProxyClientSocket unittests. net_unittests pass. Review URL: https://chromiumcodereview.appspot.com/10825030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150749 0039d316-1c4b-4281-b951-d872f2087c98 -
posciak@chromium.org authored
When the reflist size override flag is not present in slice header, we should be falling back to PPS defaults on l0 for non-I slices, but on l1 only for B-slices. BUG=141549 Review URL: https://chromiumcodereview.appspot.com/10825270 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150748 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
This cuts down on the possible include paths for compositor. BUG=none Review URL: https://chromiumcodereview.appspot.com/10825259 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150747 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@chromium.org authored
This implements the basic curtain-mode functionality: * Switch out the active session on connection (if necessary--it doesn't do this if the session is at the login screen or already switched out) * Close all connections if the session becomes active again (for example, if someone logs into it at the console). It doesn't solve the problem of launchd starting a new instance of the server when we switch out. There will be a follow-up CL to address that. BUG=110111 Review URL: https://chromiumcodereview.appspot.com/10823215 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150746 0039d316-1c4b-4281-b951-d872f2087c98
-
benrg@chromium.org authored
BUG=141467 TEST=Local Linux build, try changing wallpaper TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/10855059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150745 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
As background-image doesn't have a notion of the size it is supposed to be, when the 2x version of the new tab background is requested and the request fails, the 1x version is shown but not pixel doubled. This CL specifies explicitly that only the 1x version is available. BUG=141171, 133934 Test=Manual, instructions below 1) Run chrome with --force-device-scale-factor=2 2) Change the theme to "Kate Spade" from the Chromium web store. 3) Ensure that the bookmark bar is hidden 4) Create a new tab. Ensure that the stripes in the new tab page match up with those in the tabstrip Review URL: https://chromiumcodereview.appspot.com/10836139 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150744 0039d316-1c4b-4281-b951-d872f2087c98
-
benwells@chromium.org authored
Instead the profile manager watches notifications to determine this. BUG=130456 Review URL: https://chromiumcodereview.appspot.com/10826044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150743 0039d316-1c4b-4281-b951-d872f2087c98
-
junmin.zhu@intel.com authored
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10827218 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150742 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
Event executors currently are always destroyed on the main thread. BUG=141512 Review URL: https://chromiumcodereview.appspot.com/10836166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150741 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremya@chromium.org authored
BUG=139929 Review URL: https://chromiumcodereview.appspot.com/10827154 TBR=bshe@chromium.org Review URL: https://chromiumcodereview.appspot.com/10854061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150740 0039d316-1c4b-4281-b951-d872f2087c98
-
jln@chromium.org authored
Don't pollute LD_PRELOAD in the environment after a test runs. BUG= Review URL: https://chromiumcodereview.appspot.com/10823251 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150739 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
BUG=134454 TEST=none Review URL: https://chromiumcodereview.appspot.com/10830229 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150738 0039d316-1c4b-4281-b951-d872f2087c98
-
dpolukhin@chromium.org authored
BUG=chrome-os-partner:9659 TEST=browser_tests:ExtensionApiTest.CustomizationPrivateTest Review URL: https://chromiumcodereview.appspot.com/10832204 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150737 0039d316-1c4b-4281-b951-d872f2087c98
-
kaiwang@chromium.org authored
Review URL: https://chromiumcodereview.appspot.com/10830156 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150736 0039d316-1c4b-4281-b951-d872f2087c98
-
nkostylev@chromium.org authored
* Button min width / margin. * Progress dots are visible. BUG=129799 TBR=ivankr Review URL: https://chromiumcodereview.appspot.com/10827224 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150735 0039d316-1c4b-4281-b951-d872f2087c98
-
nileshagrawal@chromium.org authored
BUG=141473 Review URL: https://chromiumcodereview.appspot.com/10824226 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150734 0039d316-1c4b-4281-b951-d872f2087c98
-
jeremya@chromium.org authored
BUG=127323 TEST=New test Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=150420 Review URL: https://chromiumcodereview.appspot.com/10825210 TBR=jianli@chromium.org Review URL: https://chromiumcodereview.appspot.com/10834240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150732 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
renderer. BUG=141093 Review URL: https://chromiumcodereview.appspot.com/10826199 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150731 0039d316-1c4b-4281-b951-d872f2087c98
-
mihaip@chromium.org authored
It appears to have no callers (the last was removed by r127117). R=jam@chromium.org Review URL: https://chromiumcodereview.appspot.com/10836146 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150730 0039d316-1c4b-4281-b951-d872f2087c98
-
dmikurube@chromium.org authored
third_party/llvm-allocated-type is introduced at http://crrev.com/149572 (not in DEPS -- need to describe in .gclient). BUG=123758 Review URL: https://chromiumcodereview.appspot.com/10832200 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150729 0039d316-1c4b-4281-b951-d872f2087c98
-
mihaip@chromium.org authored
BUG=141501 R=asargent@chromium.org Review URL: https://chromiumcodereview.appspot.com/10825262 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150728 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
This follows the mock image of crbug.com/130385 comment 26. This CL contains following changes. - background color / line color - an arrow from below section - display names - display name / resolution view - "Apply" buttons - centering the display rectangles in the area BUG=130385 Review URL: https://chromiumcodereview.appspot.com/10843066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150727 0039d316-1c4b-4281-b951-d872f2087c98
-
bshe@chromium.org authored
BUG=139929 Review URL: https://chromiumcodereview.appspot.com/10827154 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150726 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
BUG=127323 TEST=New test Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=150420 Review URL: https://chromiumcodereview.appspot.com/10825210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150725 0039d316-1c4b-4281-b951-d872f2087c98
-
mihaip@chromium.org authored
r149688 added a check for the extension type in ExtensionInstallPrompt::ShowConfirmation, but for bundle installs we don't have an Extension instance to get the type of. BUG=141451 R=asargent@chromium.org Review URL: https://chromiumcodereview.appspot.com/10823243 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150724 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
that it tries to modify. BUG=141093 Review URL: https://chromiumcodereview.appspot.com/10823247 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150723 0039d316-1c4b-4281-b951-d872f2087c98
-
dalecurtis@chromium.org authored
BUG=139517 TEST=Compiles, runs on a 10.6.8 box. Review URL: https://chromiumcodereview.appspot.com/10836022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150722 0039d316-1c4b-4281-b951-d872f2087c98
-
saintlou@chromium.org authored
This is a verbatim revert of https://chromiumcodereview.appspot.com/10827184/ BUG=140886 Review URL: https://chromiumcodereview.appspot.com/10827237 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150721 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150720 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150719 0039d316-1c4b-4281-b951-d872f2087c98
-