Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: chrome/browser/chromeos/drive/fileapi/webkit_file_stream_reader_impl.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_H_
6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_H_ 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 25 matching lines...) Expand all
36 const DriveFileStreamReader::FileSystemGetter& file_system_getter, 36 const DriveFileStreamReader::FileSystemGetter& file_system_getter,
37 base::SequencedTaskRunner* file_task_runner, 37 base::SequencedTaskRunner* file_task_runner,
38 const base::FilePath& drive_file_path, 38 const base::FilePath& drive_file_path,
39 int64 offset, 39 int64 offset,
40 const base::Time& expected_modification_time); 40 const base::Time& expected_modification_time);
41 virtual ~WebkitFileStreamReaderImpl(); 41 virtual ~WebkitFileStreamReaderImpl();
42 42
43 // storage::FileStreamReader override. 43 // storage::FileStreamReader override.
44 virtual int Read(net::IOBuffer* buffer, 44 virtual int Read(net::IOBuffer* buffer,
45 int buffer_length, 45 int buffer_length,
46 const net::CompletionCallback& callback) OVERRIDE; 46 const net::CompletionCallback& callback) override;
47 virtual int64 GetLength(const net::Int64CompletionCallback& callback) 47 virtual int64 GetLength(const net::Int64CompletionCallback& callback)
48 OVERRIDE; 48 override;
49 49
50 private: 50 private:
51 // Called upon the initialization completion of |stream_reader_|. 51 // Called upon the initialization completion of |stream_reader_|.
52 // Processes the result of the initialization with checking last 52 // Processes the result of the initialization with checking last
53 // modified time, and calls |callback| with net::Error code as its result. 53 // modified time, and calls |callback| with net::Error code as its result.
54 void OnStreamReaderInitialized( 54 void OnStreamReaderInitialized(
55 const net::CompletionCallback& callback, 55 const net::CompletionCallback& callback,
56 int error, 56 int error,
57 scoped_ptr<ResourceEntry> entry); 57 scoped_ptr<ResourceEntry> entry);
58 58
(...skipping 21 matching lines...) Expand all
80 // This should remain the last member so it'll be destroyed first and 80 // This should remain the last member so it'll be destroyed first and
81 // invalidate its weak pointers before other members are destroyed. 81 // invalidate its weak pointers before other members are destroyed.
82 base::WeakPtrFactory<WebkitFileStreamReaderImpl> weak_ptr_factory_; 82 base::WeakPtrFactory<WebkitFileStreamReaderImpl> weak_ptr_factory_;
83 DISALLOW_COPY_AND_ASSIGN(WebkitFileStreamReaderImpl); 83 DISALLOW_COPY_AND_ASSIGN(WebkitFileStreamReaderImpl);
84 }; 84 };
85 85
86 } // namespace internal 86 } // namespace internal
87 } // namespace drive 87 } // namespace drive
88 88
89 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_ H_ 89 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_READER_IMPL_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698