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

Unified Diff: chrome/browser/extensions/api/system_display/system_display_api.h

Issue 23441032: [SystemInfo API] Rewrite DisplayInfoProvider without SystemInfoProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing head file Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/system_display/system_display_api.h
diff --git a/chrome/browser/extensions/api/system_display/system_display_api.h b/chrome/browser/extensions/api/system_display/system_display_api.h
index ee63e7453601427f29ac84b28e9efe795ba84ceb..6038b20e90eac484d838007aa6bc35bb9429e3fa 100644
--- a/chrome/browser/extensions/api/system_display/system_display_api.h
+++ b/chrome/browser/extensions/api/system_display/system_display_api.h
@@ -7,7 +7,6 @@
#include <string>
-#include "chrome/browser/extensions/api/system_display/display_info_provider.h"
#include "chrome/browser/extensions/extension_function.h"
namespace extensions {
@@ -20,9 +19,6 @@ class SystemDisplayGetInfoFunction : public AsyncExtensionFunction {
protected:
virtual ~SystemDisplayGetInfoFunction() {}
virtual bool RunImpl() OVERRIDE;
-
- private:
- void OnGetDisplayInfoCompleted(bool success);
};
class SystemDisplaySetDisplayPropertiesFunction
@@ -34,9 +30,6 @@ class SystemDisplaySetDisplayPropertiesFunction
protected:
virtual ~SystemDisplaySetDisplayPropertiesFunction() {}
virtual bool RunImpl() OVERRIDE;
-
- private:
- void OnPropertiesSet(bool success, const std::string& error);
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698