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

Side by Side Diff: components/html_viewer/document_resource_waiter.h

Issue 1406153004: components/mus/public/interfaces View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet another rebase Created 5 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ 5 #ifndef COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_
6 #define COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ 6 #define COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "components/html_viewer/html_frame_tree_manager_observer.h" 10 #include "components/html_viewer/html_frame_tree_manager_observer.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 void StopFinding(bool clear_selection) override; 90 void StopFinding(bool clear_selection) override;
91 void HighlightFindResults(int32_t request_id, 91 void HighlightFindResults(int32_t request_id,
92 const mojo::String& search_test, 92 const mojo::String& search_test,
93 web_view::mojom::FindOptionsPtr options, 93 web_view::mojom::FindOptionsPtr options,
94 bool reset) override; 94 bool reset) override;
95 void StopHighlightingFindResults() override; 95 void StopHighlightingFindResults() override;
96 96
97 // WindowObserver: 97 // WindowObserver:
98 void OnWindowViewportMetricsChanged( 98 void OnWindowViewportMetricsChanged(
99 mus::Window* window, 99 mus::Window* window,
100 const mojo::ViewportMetrics& old_metrics, 100 const mus::mojom::ViewportMetrics& old_metrics,
101 const mojo::ViewportMetrics& new_metrics) override; 101 const mus::mojom::ViewportMetrics& new_metrics) override;
102 void OnWindowDestroyed(mus::Window* window) override; 102 void OnWindowDestroyed(mus::Window* window) override;
103 103
104 // HTMLFrameTreeManagerObserver: 104 // HTMLFrameTreeManagerObserver:
105 void OnHTMLFrameTreeManagerChangeIdAdvanced() override; 105 void OnHTMLFrameTreeManagerChangeIdAdvanced() override;
106 void OnHTMLFrameTreeManagerDestroyed() override; 106 void OnHTMLFrameTreeManagerDestroyed() override;
107 107
108 GlobalState* global_state_; 108 GlobalState* global_state_;
109 HTMLDocument* document_; 109 HTMLDocument* document_;
110 mojo::URLResponsePtr response_; 110 mojo::URLResponsePtr response_;
111 mus::Window* root_; 111 mus::Window* root_;
(...skipping 18 matching lines...) Expand all
130 bool waiting_for_change_id_; 130 bool waiting_for_change_id_;
131 131
132 HTMLFrameTreeManager* target_frame_tree_; 132 HTMLFrameTreeManager* target_frame_tree_;
133 133
134 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter); 134 DISALLOW_COPY_AND_ASSIGN(DocumentResourceWaiter);
135 }; 135 };
136 136
137 } // namespace html_viewer 137 } // namespace html_viewer
138 138
139 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_ 139 #endif // COMPONENTS_HTML_VIEWER_DOCUMENT_RESOURCE_WAITER_H_
OLDNEW
« no previous file with comments | « components/html_viewer/ax_provider_apptest.cc ('k') | components/html_viewer/document_resource_waiter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698