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

Side by Side Diff: content/browser/web_contents/web_contents_view_android.cc

Issue 10378026: Reland 135525 - Add a first-class off-store install UI to chrome://extensions/. (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
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 #include "content/browser/web_contents/web_contents_view_android.h" 5 #include "content/browser/web_contents/web_contents_view_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/renderer_host/render_view_host_impl.h" 8 #include "content/browser/renderer_host/render_view_host_impl.h"
9 9
10 WebContentsViewAndroid::WebContentsViewAndroid( 10 WebContentsViewAndroid::WebContentsViewAndroid(
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 79
80 bool WebContentsViewAndroid::IsDoingDrag() const { 80 bool WebContentsViewAndroid::IsDoingDrag() const {
81 NOTIMPLEMENTED(); 81 NOTIMPLEMENTED();
82 return false; 82 return false;
83 } 83 }
84 84
85 void WebContentsViewAndroid::CancelDragAndCloseTab() { 85 void WebContentsViewAndroid::CancelDragAndCloseTab() {
86 NOTIMPLEMENTED(); 86 NOTIMPLEMENTED();
87 } 87 }
88 88
89 WebDropData* WebContentsViewAndroid::GetDropData() const {
90 NOTIMPLEMENTED();
91 return NULL;
92 }
93
89 bool WebContentsViewAndroid::IsEventTracking() const { 94 bool WebContentsViewAndroid::IsEventTracking() const {
90 NOTIMPLEMENTED(); 95 NOTIMPLEMENTED();
91 return false; 96 return false;
92 } 97 }
93 98
94 void WebContentsViewAndroid::CloseTabAfterEventTracking() { 99 void WebContentsViewAndroid::CloseTabAfterEventTracking() {
95 NOTIMPLEMENTED(); 100 NOTIMPLEMENTED();
96 } 101 }
97 102
98 void WebContentsViewAndroid::GetViewBounds(gfx::Rect* out) const { 103 void WebContentsViewAndroid::GetViewBounds(gfx::Rect* out) const {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 NOTIMPLEMENTED(); 162 NOTIMPLEMENTED();
158 } 163 }
159 164
160 void WebContentsViewAndroid::GotFocus() { 165 void WebContentsViewAndroid::GotFocus() {
161 NOTIMPLEMENTED(); 166 NOTIMPLEMENTED();
162 } 167 }
163 168
164 void WebContentsViewAndroid::TakeFocus(bool reverse) { 169 void WebContentsViewAndroid::TakeFocus(bool reverse) {
165 NOTIMPLEMENTED(); 170 NOTIMPLEMENTED();
166 } 171 }
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_view_android.h ('k') | content/browser/web_contents/web_contents_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698