- 28 Oct, 2014 36 commits
-
-
rouslan authored
The feature is disabled through field trial infrastructure. Pass these flags to try it out on a device: --enable-password-generation --local-heuristics-only-for-password-generation BUG=412150 Review URL: https://codereview.chromium.org/606153002 Cr-Commit-Position: refs/heads/master@{#301526}
-
ianwen authored
Meta_accessor is deprecated and we should use EnhancedBookmarkModel in EnhancedBookmarkBridge. We might want to delete metadata_accessor files after this CL. BUG=415817 Review URL: https://codereview.chromium.org/679833002 Cr-Commit-Position: refs/heads/master@{#301525}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=sadrul@chromium.org Review URL: https://codereview.chromium.org/683563002 Cr-Commit-Position: refs/heads/master@{#301524}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=derat@chromium.org Review URL: https://codereview.chromium.org/685543003 Cr-Commit-Position: refs/heads/master@{#301523}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=varkha@chromium.org Review URL: https://codereview.chromium.org/676403006 Cr-Commit-Position: refs/heads/master@{#301522}
-
gcasto authored
For other fields, we assume that if the author has specified autocomplete attributes we should respect all their choices, including not trying to determine field autocomplete values for fields that the author didn't specify. This doesn't apply for password fields for two reasons. First, there is no way for an author to specify generation for a particular field. Second, since generation isn't a specced autocomplete value, the password field can reasonably be set (e.g. "autocomplete=new-password") and also have generation enabled. BUG=424793 Review URL: https://codereview.chromium.org/659793005 Cr-Commit-Position: refs/heads/master@{#301521}
-
ernstm authored
R=tonyg@chromium.org,dtu@chromium.org BUG=426649 Review URL: https://codereview.chromium.org/684673002 Cr-Commit-Position: refs/heads/master@{#301520}
-
hendrikw authored
Old code used a size, we now use a rect, and I didn't update the quad clipping to use the origin offset. We now correctly clip the quads, and I've updated the unit test to use a visible rect that doesn't sit on (0,0), and will fail without this change. Though I wasn't able to reproduce it, it may also fix: https://code.google.com/p/chromium/issues/detail?id=427467 BUG=18132446 (internal) Review URL: https://codereview.chromium.org/678193002 Cr-Commit-Position: refs/heads/master@{#301519}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=mukai@chromium.org Review URL: https://codereview.chromium.org/657923005 Cr-Commit-Position: refs/heads/master@{#301518}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/bdffb34..33edc61 TBR=leviw@chromium.org,yurys@chromium.org Review URL: https://codereview.chromium.org/681913003 Cr-Commit-Position: refs/heads/master@{#301517}
-
eroman authored
BUG=395904 Review URL: https://codereview.chromium.org/413523003 Cr-Commit-Position: refs/heads/master@{#301516}
-
pkotwicz authored
BUG=426561 TEST=None Review URL: https://codereview.chromium.org/674303002 Cr-Commit-Position: refs/heads/master@{#301515}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=derat@chromium.org Review URL: https://codereview.chromium.org/686553002 Cr-Commit-Position: refs/heads/master@{#301514}
-
mdempsky authored
BUG=414363 TBR=jln@chromium.org Review URL: https://codereview.chromium.org/657893006 Cr-Commit-Position: refs/heads/master@{#301513}
-
jbauman authored
This may help startup time. Review URL: https://codereview.chromium.org/648413004 Cr-Commit-Position: refs/heads/master@{#301512}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=sky@chromium.org Review URL: https://codereview.chromium.org/683623002 Cr-Commit-Position: refs/heads/master@{#301511}
-
anandc authored
BUG= Review URL: https://codereview.chromium.org/680643003 Cr-Commit-Position: refs/heads/master@{#301510}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=dbeam@chromium.org Review URL: https://codereview.chromium.org/686543002 Cr-Commit-Position: refs/heads/master@{#301509}
-
estade authored
for CVC and PAN fields. BUG=427103,427012 Review URL: https://codereview.chromium.org/681843002 Cr-Commit-Position: refs/heads/master@{#301508}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=mdm@chromium.org Review URL: https://codereview.chromium.org/682613003 Cr-Commit-Position: refs/heads/master@{#301507}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=pkasting@chromium.org Review URL: https://codereview.chromium.org/681823004 Cr-Commit-Position: refs/heads/master@{#301506}
-
thestig authored
Review URL: https://codereview.chromium.org/673343003 Cr-Commit-Position: refs/heads/master@{#301505}
-
vadimt authored
Mechanical change that adds instrumentation required to locate the source of jankiness (i.e. a long-running fragment of code executed as a part of the task that causes jank) in the code. See the bug for details on what kind of jank we are after. A number of similar CLs were landed, and none of them caused issues. They've helped to find and fix janky code. The code of the instrumentation is highly optimized and is not expected to affect performance. The code simply creates a diagnostic task which is identical to ones created by PostTask or IPC message handlers. Landing as TBR since this is a mechanical, safe and temporary change. This CL instruments code invoked from HttpStreamParser::OnIOComplete's callback, which is responsible for 16.2 jph BUG=424359 TBR=mmenke@chromium.org Review URL: https://codereview.chromium.org/675273004 Cr-Commit-Position: refs/heads/master@{#301504}
-
wez authored
BUG=260879 Review URL: https://codereview.chromium.org/678073007 Cr-Commit-Position: refs/heads/master@{#301503}
-
davidben authored
The equivalent logs in SSLClientSocketNSS were never implemented here. This will help in debugging problems which occur after the handshake. BUG=425834 Review URL: https://codereview.chromium.org/651183004 Cr-Commit-Position: refs/heads/master@{#301502}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=varkha@chromium.org Review URL: https://codereview.chromium.org/681913002 Cr-Commit-Position: refs/heads/master@{#301501}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=sadrul@chromium.org Review URL: https://codereview.chromium.org/681883002 Cr-Commit-Position: refs/heads/master@{#301500}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=sadrul@chromium.org Review URL: https://codereview.chromium.org/683553002 Cr-Commit-Position: refs/heads/master@{#301499}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=thestig@chromium.org Review URL: https://codereview.chromium.org/679273002 Cr-Commit-Position: refs/heads/master@{#301498}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=skuhne@chromium.org Review URL: https://codereview.chromium.org/685483004 Cr-Commit-Position: refs/heads/master@{#301497}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=skuhne@chromium.org Review URL: https://codereview.chromium.org/686593002 Cr-Commit-Position: refs/heads/master@{#301496}
-
dalecurtis authored
Preserves the looping behavior for 200-type sources, while reverting the disabling of seeks for "non-streaming" type sources which report an infinite duration. This reverts the unintended behavior change from http://crrev.com/298565 BUG=412562,427412 TEST=live player works again. LayoutTest forthcoming. Review URL: https://codereview.chromium.org/684473002 Cr-Commit-Position: refs/heads/master@{#301495}
-
Mitsuru Oshima authored
BUG=427729 TBR=lanwei@chromium.org Review URL: https://codereview.chromium.org/680183003 Cr-Commit-Position: refs/heads/master@{#301494}
-
ben authored
Remove v2. R=sky@chromium.org BUG= Review URL: https://codereview.chromium.org/682713003 Cr-Commit-Position: refs/heads/master@{#301493}
-
jackhou authored
This code was previously in https://chrome-internal.googlesource.com/chrome-app-installer.git We're moving it to chromium with the goal of having it eventually built as part of Chrome releases. The third_party code is used to extract the tags added by dl.google.com. Omaha uses this mechanism to tag their meta-installers. BUG=341353 Review URL: https://codereview.chromium.org/423293004 Cr-Commit-Position: refs/heads/master@{#301492}
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=asvitkine@chromium.org Review URL: https://codereview.chromium.org/679243002 Cr-Commit-Position: refs/heads/master@{#301491}
-
- 27 Oct, 2014 4 commits
-
-
dcheng authored
The Google C++ style guide states: Explicitly annotate overrides of virtual functions or virtual destructors with an override or (less frequently) final specifier. Older (pre-C++11) code will use the virtual keyword as an inferior alternative annotation. For clarity, use exactly one of override, final, or virtual when declaring an override. To better conform to these guidelines, the following constructs have been rewritten: - if a base class has a virtual destructor, then: virtual ~Foo(); -> ~Foo() override; - virtual void Foo() override; -> void Foo() override; - virtual void Foo() override final; -> void Foo() final; This patch was automatically generated. The clang plugin can generate fixit hints, which are suggested edits when it is 100% sure it knows how to fix a problem. The hints from the clang plugin were applied to the source tree using the tool in https://codereview.chromium.org/598073004. BUG=417463 R=derat@chromium.org Review URL: https://codereview.chromium.org/680153002 Cr-Commit-Position: refs/heads/master@{#301490}
-
Adam Langley authored
net: add a batch of HSTS preloads. Cr-Commit-Position: refs/heads/master@{#301489}
-
jonross authored
MenuButton will now respond to TAP_DOWN gestures, entering the Hover state. It will return to a normal state if the gesture is cancelled. Tap gestures that activate the menu will still cause it to enter a Pressed state. This experiment is behind the flag switches::kEnableTouchFeedback TEST=MenuButtonTest.TouchFeedbackDuringTap, MenuButtonTest.TouchFeedbackDuringTapCancel BUG=398404 Review URL: https://codereview.chromium.org/674163003 Cr-Commit-Position: refs/heads/master@{#301488}
-
nednguyen authored
BUG=418375 Review URL: https://codereview.chromium.org/650293007 Cr-Commit-Position: refs/heads/master@{#301487}
-