~oxide-developers/oxide/oxide.trunk

« back to all changes in this revision

Viewing changes to shared/browser/oxide_browser_platform_integration.h

  • Committer: Justin McPherson
  • Date: 2015-07-28 06:03:19 UTC
  • mfrom: (1159.2.6 1328494)
  • Revision ID: justin.mcpherson@canonical.com-20150728060319-6b72w4to1l8imc21
Request that the screensaver be inhibited (desktop)

This adds to the already existing code to do this by activating the desktop path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#ifndef _OXIDE_SHARED_BROWSER_PLATFORM_INTEGRATION_H_
19
19
#define _OXIDE_SHARED_BROWSER_PLATFORM_INTEGRATION_H_
20
20
 
 
21
#include <string>
 
22
 
21
23
#include "base/macros.h"
22
24
#include "base/memory/scoped_ptr.h"
23
25
#include "base/observer_list.h"
96
98
  // Get the current application state
97
99
  virtual ApplicationState GetApplicationState();
98
100
 
 
101
  // Get the application name
 
102
  virtual std::string GetApplicationName();
 
103
 
99
104
 protected:
100
105
  BrowserPlatformIntegration();
101
106