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

Side by Side Diff: chrome/browser/chromeos/extensions/file_browser_private_api.h

Issue 10332267: Revert 138055 - gdata: Add requestDirectoryRefresh to file_browser_private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ 6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 603
604 // Implements the chrome.fileBrowserPrivate.getNetworkConnectionState method. 604 // Implements the chrome.fileBrowserPrivate.getNetworkConnectionState method.
605 class GetNetworkConnectionStateFunction : public SyncExtensionFunction { 605 class GetNetworkConnectionStateFunction : public SyncExtensionFunction {
606 protected: 606 protected:
607 virtual bool RunImpl() OVERRIDE; 607 virtual bool RunImpl() OVERRIDE;
608 private: 608 private:
609 DECLARE_EXTENSION_FUNCTION_NAME( 609 DECLARE_EXTENSION_FUNCTION_NAME(
610 "fileBrowserPrivate.getNetworkConnectionState"); 610 "fileBrowserPrivate.getNetworkConnectionState");
611 }; 611 };
612 612
613 // Implements the chrome.fileBrowserPrivate.requestDirectoryRefresh method.
614 class RequestDirectoryRefreshFunction : public SyncExtensionFunction {
615 protected:
616 virtual bool RunImpl() OVERRIDE;
617 private:
618 DECLARE_EXTENSION_FUNCTION_NAME(
619 "fileBrowserPrivate.requestDirectoryRefresh");
620 };
621
622 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_ 613 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_BROWSER_PRIVATE_API_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/file_browser_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698