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

Unified Diff: content/public/common/widget_visible_state.h

Issue 240163005: Deliver IPC messages together with SwapCompositorFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use IPC? Created 6 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/widget_visible_state.h
diff --git a/content/public/common/widget_visible_state.h b/content/public/common/widget_visible_state.h
new file mode 100644
index 0000000000000000000000000000000000000000..b730e1fe4894826394baa0cf167a971c357622ab
--- /dev/null
+++ b/content/public/common/widget_visible_state.h
@@ -0,0 +1,21 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_COMMON_WIDGET_VISIBLE_STATE_H_
+#define CONTENT_PUBLIC_COMMON_WIDGET_VISIBLE_STATE_H_
+
+namespace content {
+
+enum WidgetVisibleState {
+ WIDGET_VISIBLE_STATE_PROVISIONAL_LOAD_COMMITTED = 0,
+ WIDGET_VISIBLE_STATE_FIRST_VISUALLY_NON_EMPTY_LAYOUT,
+ WIDGET_VISIBLE_STATE_DID_FINISH_DOCUMENT_LOAD,
+ WIDGET_VISIBLE_STATE_DID_HANDLE_ONLOAD_EVENTS,
+
+ WIDGET_VISIBLE_STATE_MAX = WIDGET_VISIBLE_STATE_DID_HANDLE_ONLOAD_EVENTS,
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_COMMON_WIDGET_VISIBLE_STATE_H_

Powered by Google App Engine
This is Rietveld 408576698