- 24 Jul, 2014 40 commits
-
-
yoz@chromium.org authored
This does: - Move files - Fix up all namespaces in these files to be extensions, not apps - Clean up DEPS files This does not: - Change the name of the build targets (app_shell, app_shell_browsertests) BUG=394987 TBR=ben@chromium.org Review URL: https://codereview.chromium.org/412713002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285144 0039d316-1c4b-4281-b951-d872f2087c98
-
reillyg@chromium.org authored
The hid_gadget.HidGadget class implements the basic USB control requests required by the HID 1.11 specification. It is then extended by subclasses of hid_gadget.HidFeature which implement the logic behind the HID report IDs supported by the device. BUG=396682 R=rockot@chromium.org,rpaquay@chromium.org,kalman@chromium.org Review URL: https://codereview.chromium.org/410743006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285143 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
Enable dragging from the main container to the overflow container by opening the wrench menu when hovering over the button while dragging a browser action. This also requires keeping the menu open while the drag is happening. Note: this doesn't fix drag calculations for the overflow menu. In an effort to keep these patches small, that will come later. BUG=393038 Review URL: https://codereview.chromium.org/399143004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285142 0039d316-1c4b-4281-b951-d872f2087c98
-
ljagielski@opera.com authored
BUG=395190 Review URL: https://codereview.chromium.org/405083004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285140 0039d316-1c4b-4281-b951-d872f2087c98
-
jamesr@chromium.org authored
This adds an InterfaceFactory<Interface> type and allows registering a service through its provider. Using an InterfaceFactory allows the app to be in control of the lifetime of the implementation of the interface and hides all of the implementation details of the interface from the application library code (i.e. no subclassing impl classes or anything like that). The default binding behavior is to bind the lifetime of the impl to the lifetime of the pipe, but the application can also weakly bind to a service in cases where it needs to manage the lifetime explicitly. Review URL: https://codereview.chromium.org/380413003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285139 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
R=tbreisacher@chromium.org BUG=395905 TEST=chrome/browser/test_presubmit.py NOTRY=true Review URL: https://codereview.chromium.org/410603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285138 0039d316-1c4b-4281-b951-d872f2087c98
-
antrim@chromium.org authored
Extracted LoginEventRecorder from BootTimesLoader to loose dependecies. BUG=387613 R=nkostylev@chromium.org TBR=bauerb@chromium.org TBR=stevenjb@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284682 Review URL: https://codereview.chromium.org/391373002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285137 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@chromium.org authored
Its visual style is not really in keeping with the rest of the v2 app, and the form-factor is not conducive to an easily extensible UI. For now, a menu will suffice; if we need anything more complex, it can easily be replaced with an options dialog. This CL also simplifies the MenuButton class to use stopPropagation instead of timers to prevent the close handler being triggered by the same click that opens the menu. BUG=134213 Review URL: https://codereview.chromium.org/339613003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285136 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285135 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
BoringSSL fixes this API to be const-correct. BUG=none Review URL: https://codereview.chromium.org/417683003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285134 0039d316-1c4b-4281-b951-d872f2087c98
-
miletus@chromium.org authored
Touch event's position resolution could be quite different than the display's resolution, e.g. the display could be set as 1920x1080 while the touchscreen is reporting touch position range at 32767x32767. Touch event's radius is reported in the units the same as touch position. While we are doing touch position scaling, we should also do the same for touch radius. BUG=392172, 233245 TEST=touch radius is scaled to be reasonable value for HP 23TM touch monitor. Review URL: https://codereview.chromium.org/412553005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285132 0039d316-1c4b-4281-b951-d872f2087c98
-
tkent@chromium.org authored
Many Blink headers in public/platform/ include other headers in same directory with relative paths. For now they have |#include "WebFoo.h"|, and we'd like to change it to |#include "public/platform/WebFoo.h"|. This CL is necessary to specify correct include path for them. BUG= Review URL: https://codereview.chromium.org/410743007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285131 0039d316-1c4b-4281-b951-d872f2087c98
-
miguelg@chromium.org authored
Move the profile related methods to its own class. BUG=392145 TBR=vasilii,miket Review URL: https://codereview.chromium.org/376253005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285130 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285129 0039d316-1c4b-4281-b951-d872f2087c98
-
rouslan@chromium.org authored
This version uses release-build assert that unit tests are able to open the test data file. Optimizing out this assert in release builds caused hard-to-diagnose crashes on DrMemory bots. TBR=estade@chromium.org BUG=395169,396203 Review URL: https://codereview.chromium.org/412063002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285128 0039d316-1c4b-4281-b951-d872f2087c98
-
sandersd@chromium.org authored
This ensures that users passing --ignore-gpu-blacklist won't get VDA before it is ready. BUG=396797 Review URL: https://codereview.chromium.org/414843002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285127 0039d316-1c4b-4281-b951-d872f2087c98
-
sorin@chromium.org authored
This change swaps the order of component update registration so that CDM is registered before pNaCl, and thus, its updates are processed ahead of pNaCl updates. BUG=396724 Review URL: https://codereview.chromium.org/417713002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285126 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285125 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=178746:178777&mode=html TBR=pkasting@chromium.org,haraken@chromium.org BUG= Review URL: https://codereview.chromium.org/411963002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285124 0039d316-1c4b-4281-b951-d872f2087c98
-
bruening@google.com authored
BUG=396969 TBR=zhaoqin@chromium.org Review URL: https://codereview.chromium.org/416723003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285123 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285122 0039d316-1c4b-4281-b951-d872f2087c98
-
vitalybuka@chromium.org authored
a08cf99 Refactor CFX_BasicArray. 141d61d Check for integer overflow in CFX_BasicArray. f7f6b0c Remove unnecessary aligned memory check when __SSE__ is used 10e6c7c Only use "final" on MSVS2012+, to keep pdfium building with 2010. 46773fd Fix potential memory violation in CJS_PublicMethods::StrRTrim() 8538642 Fix lookahead beyond bounds in CJS_PublicMethods::MakeFormatDate(). 0f14185 Fix FPDF_RenderPage 2x zoom in when bBackgroundAlphaNeeded is true 9e0177a Added options to save pages into BMP and EMF on Windows. BUG=179413 Review URL: https://codereview.chromium.org/415833002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285121 0039d316-1c4b-4281-b951-d872f2087c98
-
bruening@google.com authored
Reason for revert: r285028 seems to have broken the ThreadSanitizer build. > Pepper: Remove LOAD_MODULE SRPC call in SFI mode. > > This change puts nexe information in the parameters for starting a NaCl > plugin instead of sending that information over SRPC. This may remove the > need for that IPC round trip entirely; perhaps we could report load failure > as part of the RPCs for starting sel_ldr or performing StartModule(). > > nacl_defines.gypi as added as a dependency in components/components_tests.gyp > because nacl_process_host.h now includes > "native_client/src/public/nacl_file_info.h", which requires nacl_defines. > > BUG=333950 > R=bbudge@chromium.org, brettw@chromium.org, hidehiko@chromium.org, jschuh@chromium.org, mseaborn@chromium.org, sky@chromium.org > > Review URL: https://codereview.chromium.org/332463003 TBR=teravest@chromium.org Review URL: https://codereview.chromium.org/413063003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285120 0039d316-1c4b-4281-b951-d872f2087c98
-
junov@chromium.org authored
This change adds the command line switch --enable-display-list-2d-canvas and adds a corresponding entry to the chrome://flags page BUG=392594 Review URL: https://codereview.chromium.org/405163004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285119 0039d316-1c4b-4281-b951-d872f2087c98
-
rnk@chromium.org authored
Clang won't let you form a pointer to member without an explicit '&ClassName::' before the method name. In fact, neither will MSVC unless you explicitly disable the error, which the ATL does. This has been documented on MSDN since VS 2005: http://msdn.microsoft.com/en-us/library/ms174271.aspx Clang doesn't implement this extension, so just fix the code. R=wez@chromium.org BUG=82385 Review URL: https://codereview.chromium.org/410853002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285118 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
This class is doing more than just an observer. Add a default implmentation of OperationDelegate::OnFileChangedByOperation() to remove DummyOperationObserver in sync_client_unittest.cc BUG=None TEST=unit_tests Review URL: https://codereview.chromium.org/408143014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285117 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
Once Embed() is called on a node the connection that created the node can no longer see any of the children. If the node had existing children they are removed. BUG=396804 TEST=covered by test R=ben@chromium.org Review URL: https://codereview.chromium.org/415793003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285116 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@chromium.org authored
BUG=372212 Review URL: https://codereview.chromium.org/411763004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285115 0039d316-1c4b-4281-b951-d872f2087c98
-
vmpstr@chromium.org authored
This patch is the second part of ensuring that recycle tree does not contain any unshared tiles. This is done by removing recycle tree tilings when active tree removes those tilings. This includes a check in RemoveTilings for NULL tilings. When the first pending tree activates, it swaps with active tree's NULL tilings, which become the recycle tilings. When removing tilings, we have to ensure that tilings is not NULL before accessing its members. BUG=393802 R=danakj, enne Review URL: https://codereview.chromium.org/399233004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285114 0039d316-1c4b-4281-b951-d872f2087c98
-
hirono@chromium.org authored
BUG=327719 TEST=None TBR=fukino Review URL: https://codereview.chromium.org/413943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285113 0039d316-1c4b-4281-b951-d872f2087c98
-
fsamuel@chromium.org authored
BUG=396730 Review URL: https://codereview.chromium.org/414803003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285112 0039d316-1c4b-4281-b951-d872f2087c98
-
mkosiba@chromium.org authored
The pakge should be specified by the code in Android, not here. BUG=396680 Review URL: https://codereview.chromium.org/415703002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285111 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
Provide a reference implementation of the MotionEvent interface, usable by mock implementations and platform-specific implementations. BUG=394562 Review URL: https://codereview.chromium.org/407313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285110 0039d316-1c4b-4281-b951-d872f2087c98
-
sunangel@chromium.org authored
These changes provide support for observers for DistilledPagePrefs to listen to changes in DistilledPagePrefs. BUG=383630 Review URL: https://codereview.chromium.org/403323005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285109 0039d316-1c4b-4281-b951-d872f2087c98
-
bcwhite@chromium.org authored
BUG=118639 Review URL: https://codereview.chromium.org/373523002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285108 0039d316-1c4b-4281-b951-d872f2087c98
-
dbeam@chromium.org authored
This CL adds: - third_party/closure_compiler/ - compiler/ (latest version of closure compiler) - COPYING (copying instructions) - compiler.jar (closure compiler as a .jar) - README.md (how to use compiler) - runner/ (needed to run the compiler in IDE mode) - build_runner_jar.py (builds runner.jar) - runner.jar (a .jar to execute to compile) - src/org/chromium/closure/compiler/Runner.java (a compiler runner) - LICENSE (closure compiler's license) - OWNERS (reviewers) - README.chromium (description of new directory's contents) - checker.py (class for checking .js files with settings for chrome code) - compile_modules.py (parses modules with sources/dependencies/externs) BUG=78368 R=arv@chromium.org, darin@chromium.org Review URL: https://codereview.chromium.org/369643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285107 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/414473002/tonyg@chromium.org authored
Reason for revert: Fails on multiple android bots. For example: http://build.chromium.org/p/chromium.perf/builders/Android%20Nexus4%20Perf/builds/1134/steps/memory.mobile_memory/logs/stdio Original issue's description: > Re-enable mobile memory tests. > > BUG=370977 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=284854 TBR=starodub@google.com NOTREECHECKS=true NOTRY=true BUG=370977 Review URL: https://codereview.chromium.org/413093003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285105 0039d316-1c4b-4281-b951-d872f2087c98
-
bruening@chromium.org authored
BUG=http://code.google.com/p/drmemory/issues/detail?id=1052 TBR=zhaoqin@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/415913002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285104 0039d316-1c4b-4281-b951-d872f2087c98
-
prasadv@chromium.org authored
GetCompatibleCommand checks chromium revision to set appropriate browser type. While processing 3rd party repositories by bisect, it was trying to compare dependency module revision instead of chromium revision. BUG=388411 NOTRY=true Review URL: https://codereview.chromium.org/414893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285103 0039d316-1c4b-4281-b951-d872f2087c98
-
rlarocque@chromium.org authored
Moves the remaining invalidations code from sync/internal_api/public/base/ to components/invalidation/. TBR=atwilson BUG=259559 Review URL: https://codereview.chromium.org/400073003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285102 0039d316-1c4b-4281-b951-d872f2087c98
-