summaryrefslogtreecommitdiffstats
path: root/chrome/browser/apps/drive/drive_app_mapping_unittest.cc
Commit message (Collapse)AuthorAgeFilesLines
* Add syncable_prefs namespace.sdefresne2015-09-181-2/+2
| | | | | | | | | | | | | | | Move all the code in the syncable_prefs components into the namespace syncable_prefs and fix usage. Change automated with tools/git/mffr.py with manual fixes for the class forward-declaration. BUG=520542 TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/1353913003 Cr-Commit-Position: refs/heads/master@{#349638}
* Componentize PrefSyncableService and support classes.sdefresne2015-09-161-1/+1
| | | | | | | | | | | Create components/syncable_prefs and move PrefSyncableService files, the support code and the unit tests. BUG=522544,522537,522536,522532,522530,522527,522526 Review URL: https://codereview.chromium.org/1305213009 Cr-Commit-Position: refs/heads/master@{#349098}
* Standardize usage of virtual/override/final specifiers.dcheng2014-10-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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=jhawkins@chromium.org Review URL: https://codereview.chromium.org/684613002 Cr-Commit-Position: refs/heads/master@{#301990}
* app_list: Respect user uninstall of unremovable Drive app.xiyuan2014-10-151-0/+10
| | | | | | | | | | | | | - Re-enable Drive app integration for ChromeOS; - Make AppListSyncableService track uninstalled Drive apps; - Make DriveAppMapping caches the uninstalled Drive apps locally; - Make DriveAppProvider skip installing of uninstalled Drive apps; BUG=420034 Review URL: https://codereview.chromium.org/650313002 Cr-Commit-Position: refs/heads/master@{#299589}
* replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]*mostynb2014-10-131-1/+1
| | | | | | | | | TBR=dgozman@chromium.org BUG=417463 Review URL: https://codereview.chromium.org/625113002 Cr-Commit-Position: refs/heads/master@{#299274}
* app_list: Drive app integration.xiyuan@chromium.org2014-06-191-0/+116
- DriveAppProvider to map Drive apps to chrome apps or local url apps; - DriveAppMapping to track the mapped chrome apps; - DriveServiceBridge to wrap DriveAPIService and DriveAppRegistry to provide the user Drive apps info; - Put feature behind "--enable-drive-apps-in-app-list"; BUG=358791,345066 TEST=DriveAppProviderTest.*:DriveAppMappingTest.* Review URL: https://codereview.chromium.org/308003005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278265 0039d316-1c4b-4281-b951-d872f2087c98