Auto-Submit | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
What a great idea and change Calder.
/* version= */ 2);
If there a deps problem with using WebContentsState.CONTENTS_STATE_CURRENT_VERSION here?
tabState.contentsState = new WebContentsState(buffer, /* version= */ 1);
Should we create a constant for this? I assume you're using old on purpose.
Actually, why is this not 2?
// On the stable channel, the first release is version 18. For all other channels,
// chrome 25 is the first release.
Woah... I didn't know this.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Auto-Submit | +1 |
Commit-Queue | +2 |
If there a deps problem with using WebContentsState.CONTENTS_STATE_CURRENT_VERSION here?
Done
tabState.contentsState = new WebContentsState(buffer, /* version= */ 1);
Should we create a constant for this? I assume you're using old on purpose.
Actually, why is this not 2?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/android/javatests/src/org/chromium/chrome/browser/tabmodel/TabPersistentStoreTest.java
Insertions: 3, Deletions: 1.
The diff is too large to show. Please review the diff.
```
```
The name of the file: chrome/android/javatests/src/org/chromium/chrome/browser/tab/TabUmaTest.java
Insertions: 1, Deletions: 1.
The diff is too large to show. Please review the diff.
```
[WebContentsState] Set version code at ctor
Attaching the version code after the fact is puzzling as we should know
both the version and buffer state at all times. Change the ctor to take
the version code and update all calls to set this value.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |