Skip to content

Commit

Permalink
[NaCl SDK] Add comments in the implementation code of GoogleDriveFs
Browse files Browse the repository at this point in the history
PNaCl is on a path to deprecation, and GoogleDriveFs is compiled from PNaCl,
so comments are added to the implementation code to inform that GoogleDriveFs
is not going to be further developed.

CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_nacl_sdk;master.tryserver.chromium.mac:mac_nacl_sdk;master.tryserver.chromium.win:win_nacl_sdk

Review-Url: https://codereview.chromium.org/2937083003
Cr-Commit-Position: refs/heads/master@{#480250}
  • Loading branch information
chanpatorikku authored and Commit Bot committed Jun 17, 2017
1 parent 4a35e3d commit e401555
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

namespace nacl_io {

// This is not further implemented.
// PNaCl is on a path to deprecation, and WebAssembly is
// the focused technology.

GoogleDriveFs::GoogleDriveFs() {}

Error GoogleDriveFs::Init(const FsInitArgs& args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

namespace nacl_io {

// This is not further implemented.
// PNaCl is on a path to deprecation, and WebAssembly is
// the focused technology.

class GoogleDriveFs : public Filesystem {
protected:
GoogleDriveFs();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

namespace nacl_io {

// This is not further implemented.
// PNaCl is on a path to deprecation, and WebAssembly is
// the focused technology.

GoogleDriveFsNode::GoogleDriveFsNode(GoogleDriveFs* googledrivefs)
: Node(googledrivefs) {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

namespace nacl_io {

// This is not further implemented.
// PNaCl is on a path to deprecation, and WebAssembly is
// the focused technology.

class GoogleDriveFsNode : public Node {
public:
GoogleDriveFsNode(GoogleDriveFs* googledrivefs);
Expand Down

0 comments on commit e401555

Please sign in to comment.